diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-26 03:12:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-26 03:12:58 -0700 |
commit | 2d86d2c6fcbd62696447fe3dbfac664e6c82b0ce (patch) | |
tree | f0ff150335605c9290ab49d55c77aabc081c2110 | |
parent | fdeb6bf55b7c578ce1735092c6dfbf6968cbee5c (diff) | |
download | git-2d86d2c6fcbd62696447fe3dbfac664e6c82b0ce.tar.gz git-2d86d2c6fcbd62696447fe3dbfac664e6c82b0ce.tar.xz |
Makefile: remove and create xdiff library from scratch.
... in the same spirit as 71459c193d04870076efa0a387c317390b53e3e2.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -580,7 +580,7 @@ $(LIB_FILE): $(LIB_OBJS) XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o $(XDIFF_LIB): $(XDIFF_OBJS) - $(AR) rcs $@ $(XDIFF_OBJS) + rm -f $@ && $(AR) rcs $@ $(XDIFF_OBJS) doc: |