From: Mike Frysinger Date: Wed, 19 Jan 2005 01:36:59 +0000 (-0000) Subject: tweak dependencies so the archive is only rebuilt when the object files are updated X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=10b86198725dc9363023d612c9fb1422fe6bf6fe;p=uclinux-h8%2Fuclibc-ng.git tweak dependencies so the archive is only rebuilt when the object files are updated --- diff --git a/libpthread/linuxthreads/Makefile b/libpthread/linuxthreads/Makefile index f825e992d..49bb04791 100644 --- a/libpthread/linuxthreads/Makefile +++ b/libpthread/linuxthreads/Makefile @@ -57,11 +57,12 @@ endif COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) -all: $(OBJS) $(LIBPTHREAD) +# TODO: fix race condition between subdirs and $(OBJS). +# only applies to pt-machine.o and sh64. -$(LIBPTHREAD): ar-target subdirs +all: $(LIBPTHREAD) -ar-target: $(OBJS) +$(LIBPTHREAD) ar-target: $(OBJS) subdirs $(AR) $(ARFLAGS) $(LIBPTHREAD) $(OBJS) $(COBJS): %.o : %.c @@ -84,5 +85,4 @@ $(patsubst %, _dir_%, $(DIRS)) : dummy $(patsubst %, _dirclean_%, $(DIRS)) : dummy $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean -.PHONY: dummy subdirs - +.PHONY: dummy