Makefile: do not allow gnu make to remove test-*.o files

It appears parallel build (-j) gets confused.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2007-08-30 19:14:31 -07:00
parent 8dabdfcc1b
commit fa8fe28c60
1 changed files with 2 additions and 0 deletions

View File

@ -969,6 +969,8 @@ test-date$X: date.o ctype.o

test-delta$X: diff-delta.o patch-delta.o

.PRECIOUS: $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))

test-%$X: test-%.o $(GITLIBS)
$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)