]> git.sur5r.net Git - cc65/commitdiff
Renamed [un]install goals to [un]avail.
authorOliver Schmidt <ol.sc@web.de>
Wed, 15 May 2013 09:59:51 +0000 (11:59 +0200)
committerOliver Schmidt <ol.sc@web.de>
Wed, 15 May 2013 09:59:51 +0000 (11:59 +0200)
The [un]install make goals have a rather fixed meaning for *ix users. The simple
symlinks provided here don't match the expectations users have from [un]install.
Therefore it is appropriate to rename them to "something" not tied to specific
expectations.

Makefile
src/Makefile

index 0233e042b55b431047c1e447edca615e6b060046..d5a5228718928a6be3ea7d6f2c9cf1c6f9e0a3ef 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ all mostlyclean clean:
        @$(MAKE) -C src    --no-print-directory $@
        @$(MAKE) -C libsrc --no-print-directory $@
 
-install uninstall bin:
+avail unavail bin:
        @$(MAKE) -C src    --no-print-directory $@
 
 lib:
@@ -14,6 +14,6 @@ lib:
 %:
        @$(MAKE) -C libsrc --no-print-directory $@
 
-.PHONY: all mostlyclean clean install uninstall bin lib
+.PHONY: all mostlyclean clean avail unavail bin lib
 
 .SUFFIXES:
index 959478901542fa3c803c70c80a28d3795fe5b0de..e316067d2a6a26e9e6c88ed82c84905063fd503a 100644 (file)
@@ -26,7 +26,7 @@ LDLIBS += -lm
 
 .SUFFIXES:
 
-.PHONY: all bin $(PROGS) mostlyclean clean install uninstall
+.PHONY: all bin $(PROGS) mostlyclean clean avail unavail
 
 all bin: $(PROGS)
 
@@ -36,15 +36,15 @@ mostlyclean:
 clean:
        $(RM) -r ../wrk ../bin
 
-install: all
-       $(foreach prog,$(PROGS),$(INSTALL_recipe))
+avail: all
+       $(foreach prog,$(PROGS),$(AVAIL_recipe))
 
-uninstall:
-       $(foreach prog,$(PROGS),$(UNINSTALL_recipe))
+unavail:
+       $(foreach prog,$(PROGS),$(UNAVAIL_recipe))
 
 ##########
 
-define INSTALL_recipe
+define AVAIL_recipe
 
 ln -s $(abspath ../bin/$(prog)) /usr/local/bin/$(prog)
 
@@ -52,7 +52,7 @@ endef
 
 ##########
 
-define UNINSTALL_recipe
+define UNAVAIL_recipe
 
 $(RM) /usr/local/bin/$(prog)