]> git.sur5r.net Git - cc65/commitdiff
Goals from top level Makefile should be known even if empty.
authorOliver Schmidt <ol.sc@web.de>
Wed, 5 Feb 2014 21:31:46 +0000 (22:31 +0100)
committerOliver Schmidt <ol.sc@web.de>
Wed, 5 Feb 2014 21:31:46 +0000 (22:31 +0100)
src/Makefile

index 051c7eb1fe952cfd93bcc8294f088e620909dbba..9a8807e377f4d5745677699cd14f9d686ecec09a 100644 (file)
@@ -1,3 +1,7 @@
+.SUFFIXES:
+
+.PHONY: all bin $(PROGS) mostlyclean clean install avail unavail
+
 ifeq ($(shell echo),)
 
 PROGS = ar65  \
@@ -30,10 +34,6 @@ LDLIBS += -lm
 
 INSTALL = install
 
-.SUFFIXES:
-
-.PHONY: all bin $(PROGS) mostlyclean clean install avail unavail
-
 all bin: $(PROGS)
 
 mostlyclean:
@@ -116,10 +116,6 @@ $(foreach prog,$(PROGS),$(eval $(call PROG_template,$(prog))))
 
 else # cmd.exe
 
-.SUFFIXES:
-
-.PHONY: all bin mostlyclean clean
-
 all bin:
        msbuild cc65.sln /p:configuration=release /consoleloggerparameters:disableconsolecolor
 
@@ -129,4 +125,6 @@ mostlyclean:
 clean:
        msbuild cc65.sln /p:configuration=release /consoleloggerparameters:disableconsolecolor /target:$@
 
+install avail unavail:
+
 endif # cmd.exe