From: cuz Date: Tue, 10 Oct 2000 19:54:45 +0000 (+0000) Subject: Make the all target build all libraries X-Git-Tag: V2.12.0~3175 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cbf4fa5707866831f4ea07b4ed735e3daacebbd2;p=cc65 Make the all target build all libraries git-svn-id: svn://svn.cc65.org/cc65/trunk@351 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/Makefile b/libsrc/Makefile index 068bbb4f5..47b33bc49 100644 --- a/libsrc/Makefile +++ b/libsrc/Makefile @@ -11,9 +11,22 @@ export AS = ../../src/ca65/ca65 # Define used within this makefile AR = ../src/ar65/ar65 +# List of all targets +ALLTARGETS = apple2lib \ + atarilib \ + c64lib \ + c128lib \ + cbm610lib \ + geoslib \ + petlib \ + plus4lib + #----------------------------------------------------------------------------- -all : apple2lib c64lib c128lib cbm610lib geoslib petlib plus4lib +all: + for tgt in $(ALLTARGETS); do \ + $(MAKE) clean $$tgt; \ + done #----------------------------------------------------------------------------- # Apple ][