ossp-pkg/pth/Makefile.in 1.153 -> 1.154
--- Makefile.in 2004/12/03 17:03:30 1.153
+++ Makefile.in 2004/12/06 19:47:38 1.154
@@ -157,10 +157,10 @@
# the default target
all: all-normal
all-normal: $(TARGET_ALL)
- @touch .done-all
+ @touch .done-all >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
all-for-install: $(TARGET_ALL)
- @touch .done-all
+ @touch .done-all >/dev/null 2>&1 || $(TRUE)
# build the private shared header file
pth_p.h: $(S)pth_p.h.in
@@ -217,7 +217,7 @@
# install the package
install: all-for-install
@$(MAKE) $(MKFLAGS) install-dirs install-pth @INSTALL_PTHREAD@
- @touch .done-install
+ @touch .done-install >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
install-dirs:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
@@ -246,7 +246,7 @@
# uninstall the package
uninstall:
@$(MAKE) $(MKFLAGS) @UNINSTALL_PTHREAD@ uninstall-pth uninstall-dirs
- @touch .done-uninstall
+ @touch .done-uninstall >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
uninstall-pthread:
$(RM) $(DESTDIR)$(bindir)/pthread-config
@@ -285,10 +285,10 @@
$(RM) $(TARGET_PREQ)
$(RM) $(TARGET_TEST)
$(RM) $(TARGET_LIBS)
- $(RM) core *.core *.bak *~
$(RM) *.o *.lo
$(RM) .libs/*
-$(RMDIR) .libs >/dev/null 2>&1 || $(TRUE)
+ $(RM) core *.core
$(RM) .done-*
# clean the source tree for re-configuring and re-building
@@ -298,6 +298,7 @@
$(RM) pthread-config pthread.h
$(RM) config.log config.cache config.status
$(RM) libtool
+ $(RM) *.bak *~
# clean the source tree by removing really all generate stuff
realclean: distclean
@@ -341,7 +342,7 @@
test-std: test_std
-@./test_std; \
if [ $$? -eq 0 ]; then \
- touch .done-test; \
+ touch .done-test >/dev/null 2>&1 || $(TRUE); \
if [ ".`grep $(PLATFORM) $(S)PORTING`" = . ]; then \
VERSION=`$(SHTOOL) version -lc -dshort $(_VERSION_FILE)`; \
echo "Please send the following summary line via Email to the author"; \
|
|