1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Make the all target build all libraries

git-svn-id: svn://svn.cc65.org/cc65/trunk@351 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-10-10 19:54:45 +00:00
parent 2e227d5406
commit cbf4fa5707

View File

@ -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 ][