Mercurial > audlegacy
changeset 1213:a4782cc65887 trunk
[svn] - no more "none"
author | nenolod |
---|---|
date | Wed, 14 Jun 2006 00:46:51 -0700 |
parents | 9bde8f7f30a9 |
children | 2de9d9fcdbcf |
files | ChangeLog mk/objective.mk |
diffstat | 2 files changed, 31 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed Jun 14 00:44:16 2006 -0700 +++ b/ChangeLog Wed Jun 14 00:46:51 2006 -0700 @@ -1,3 +1,12 @@ +2006-06-14 07:44:16 +0000 William Pitcock <nenolod@nenolod.net> + revision [1338] + - typo, sorry + + + Changes: Modified: + +299 -299 trunk/mk/rules.mk.in + + 2006-06-14 07:43:13 +0000 William Pitcock <nenolod@nenolod.net> revision [1336] switch rules.mk.in to ?=
--- a/mk/objective.mk Wed Jun 14 00:44:16 2006 -0700 +++ b/mk/objective.mk Wed Jun 14 00:46:51 2006 -0700 @@ -1,13 +1,13 @@ # Shut up GNU make .SILENT: -OBJECTIVE_DIRECTORIES = none -OBJECTIVE_LIBS = none -OBJECTIVE_LIBS_NOINST = none -OBJECTIVE_BINS = none -OBJECTIVE_DATA = none -SUBDIRS = none -HEADERS = none +OBJECTIVE_DIRECTORIES = +OBJECTIVE_LIBS = +OBJECTIVE_LIBS_NOINST = +OBJECTIVE_BINS = +OBJECTIVE_DATA = +SUBDIRS = +HEADERS = VERBOSITY = 0 SHOW_CFLAGS = 0 @@ -36,7 +36,7 @@ $(INSTALL) -d -m 755 $(DESTDIR)/$$i; \ fi; \ done; - @if test "$(SUBDIRS)" != "none"; then \ + @if test "x$(SUBDIRS)" != "x"; then \ for i in $(SUBDIRS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[installing subobjective: $$i]"; \ @@ -44,31 +44,31 @@ (cd $$i; $(MAKE) install || exit; cd ..); \ done; \ fi - @if test "$(OBJECTIVE_DIRECTORIES)" != "none"; then \ + @if test "x$(OBJECTIVE_DIRECTORIES)" != "x"; then \ for i in $(OBJECTIVE_DIRECTORIES); do \ printf "%10s %-20s\n" MKDIR $$i; \ $(INSTALL) -d -m 755 $(DESTDIR)/$$i; \ done; \ fi - @if test "$(HEADERS)" != "none"; then \ + @if test "x$(HEADERS)" != "x"; then \ for i in $(HEADERS); do \ printf "%10s %-20s\n" INSTALL $$i; \ $(INSTALL_DATA) $(INSTALL_OVERRIDE) $$i $(DESTDIR)/$(INCLUDEDIR)/$$i; \ done; \ fi - @if test "$(OBJECTIVE_LIBS)" != "none"; then \ + @if test "x$(OBJECTIVE_LIBS)" != "x"; then \ for i in $(OBJECTIVE_LIBS); do \ printf "%10s %-20s\n" INSTALL $$i; \ $(INSTALL) $(INSTALL_OVERRIDE) $$i $(DESTDIR)/$(LIBDIR)/$$i; \ done; \ fi - @if test "$(OBJECTIVE_BINS)" != "none"; then \ + @if test "x$(OBJECTIVE_BINS)" != "x"; then \ for i in $(OBJECTIVE_BINS); do \ printf "%10s %-20s\n" INSTALL $$i; \ $(INSTALL) $(INSTALL_OVERRIDE) $$i $(DESTDIR)/$(BINDIR)/$$i; \ done; \ fi; - @if test "$(OBJECTIVE_DATA)" != "none"; then \ + @if test "x$(OBJECTIVE_DATA)" != "x"; then \ for i in $(OBJECTIVE_DATA); do \ source=`echo $$i | cut -d ":" -f1`; \ destination=`echo $$i | cut -d ":" -f2`; \ @@ -86,7 +86,7 @@ clean: $(MAKE) clean-prehook - @if test "$(SUBDIRS)" != "none"; then \ + @if test "x$(SUBDIRS)" != "x"; then \ for i in $(SUBDIRS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[cleaning subobjective: $$i]"; \ @@ -96,17 +96,17 @@ fi $(MAKE) clean-posthook $(RM) *.o *.lo *.so *.a *.sl - @if test "$(OBJECTIVE_BINS)" != "none"; then \ + @if test "x$(OBJECTIVE_BINS)" != "x"; then \ for i in $(OBJECTIVE_BINS); do \ $(RM) $$i; \ done; \ fi - @if test "$(OBJECTIVE_LIBS)" != "none"; then \ + @if test "x$(OBJECTIVE_LIBS)" != "x"; then \ for i in $(OBJECTIVE_LIBS); do \ $(RM) $$i; \ done; \ fi - @if test "$(OBJECTIVE_LIBS_NOINST)" != "none"; then \ + @if test "x$(OBJECTIVE_LIBS_NOINST)" != "x"; then \ for i in $(OBJECTIVE_LIBS_NOINST); do \ $(RM) $$i; \ done; \ @@ -116,7 +116,7 @@ fi distclean: clean - @if test "$(SUBDIRS)" != "none"; then \ + @if test "x$(SUBDIRS)" != "x"; then \ for i in $(SUBDIRS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[distcleaning subobjective: $$i]"; \ @@ -133,7 +133,7 @@ build: $(MAKE) build-prehook - @if test "$(SUBDIRS)" != "none"; then \ + @if test "x$(SUBDIRS)" != "x"; then \ for i in $(SUBDIRS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[building subobjective: $$i]"; \ @@ -144,7 +144,7 @@ fi; \ done; \ fi - @if test "$(OBJECTIVE_LIBS)" != "none"; then \ + @if test "x$(OBJECTIVE_LIBS)" != "x"; then \ for i in $(OBJECTIVE_LIBS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[building library objective: $$i]"; \ @@ -155,7 +155,7 @@ fi; \ done; \ fi - @if test "$(OBJECTIVE_LIBS_NOINST)" != "none"; then \ + @if test "x$(OBJECTIVE_LIBS_NOINST)" != "x"; then \ for i in $(OBJECTIVE_LIBS_NOINST); do \ if test $(VERBOSITY) -gt 0; then \ echo "[building library dependency: $$i]"; \ @@ -166,7 +166,7 @@ fi; \ done; \ fi - @if test "$(OBJECTIVE_BINS)" != "none"; then \ + @if test "x$(OBJECTIVE_BINS)" != "x"; then \ for i in $(OBJECTIVE_BINS); do \ if test $(VERBOSITY) -gt 0; then \ echo "[building binary objective: $$i]"; \