Check-in Number:
|
5378 | |
Date: |
2006-Feb-23 14:32:46 (local)
2006-Feb-23 13:32:46 (UTC) |
User: | rse |
Branch: | |
Comment: |
Declare "install", "uninstall" and "clean" make(1) targets ".PHONY".
This especially workarounds problems on case insensitive filesystems
(like MacOS X' filesystem) where the "INSTALL" document conflicts with
the "install" target. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.107 -> 1.108
--- ChangeLog 2006/02/07 08:42:53 1.107
+++ ChangeLog 2006/02/23 13:32:46 1.108
@@ -11,6 +11,14 @@
This is a list of all changes to OSSP uuid.
For a more brief summary please have a look at the NEWS file.
+ Changes between 1.4.1 and 1.4.2 (07-Feb-2006 to xx-Feb-2006)
+
+ o Declare "install", "uninstall" and "clean" make(1) targets
+ ".PHONY". This especially workarounds problems on case insensitive
+ filesystems (like MacOS X' filesystem) where the "INSTALL" document
+ conflicts with the "install" target.
+ [Ralf S. Engelschall, David Wheeler <david@kineticode.com>]
+
Changes between 1.4.0 and 1.4.1 (15-Jan-2006 to 07-Feb-2006)
o Upgrade to GNU shtool 2.0.5
|
|
ossp-pkg/uuid/Makefile.in 1.39 -> 1.40
--- Makefile.in 2006/01/13 06:44:30 1.39
+++ Makefile.in 2006/02/23 13:32:46 1.40
@@ -219,6 +219,7 @@
(cd $(S)/pgsql && $(MAKE) $(MFLAGS) test PG_CONFIG=$(PG_CONFIG)); \
fi
+.PHONY: install
install:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
@@ -262,6 +263,7 @@
(cd $(S)/pgsql && $(MAKE) $(MFLAGS) install DESTDIR=$(DESTDIR) PG_CONFIG=$(PG_CONFIG)); \
fi
+.PHONY: uninstall
uninstall:
-$(RM) $(DESTDIR)$(mandir)/man1/uuid.1
-@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(bindir)/uuid
@@ -298,6 +300,7 @@
-$(RMDIR) $(DESTDIR)$(bindir) >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(prefix) >/dev/null 2>&1 || $(TRUE)
+.PHONY: clean
clean:
-$(RM) $(LIB_NAME) $(LIB_OBJS)
-@if [ ".$(WITH_DCE)" = .yes ]; then \
|
|