1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00
cc65/src/make/watcom.mak
cuz 16bc247cbf Added da65
git-svn-id: svn://svn.cc65.org/cc65/trunk@337 b7a2c559-68d2-44c3-8de9-860c34a00d81
2000-09-24 19:08:36 +00:00

123 lines
2.3 KiB
Makefile

#
# Watcom Makefile for the cc65 binutils
#
SUBDIRS = \
common \
ar65 \
ca65 \
cc65 \
cl65 \
grc \
ld65 \
od65
all: nt
nt:
cd common
make -f make\watcom.mak
cd ..\ar65
make -f make\watcom.mak
cd ..\ca65
make -f make\watcom.mak
cd ..\cc65
make -f make\watcom.mak
cd ..\cl65
make -f make\watcom.mak
cd ..\da65
make -f make\watcom.mak
cd ..\grc
make -f make\watcom.mak
cd ..\ld65
make -f make\watcom.mak
cd ..\od65
make -f make\watcom.mak
cd ..
dos:
cd common
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\ar65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\ca65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\cc65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\cl65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\da65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\grc
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\ld65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..\od65
make -DTARGET=DOS32 -f make\watcom.mak
cd ..
os2:
cd common
make -DTARGET=OS2 -f make\watcom.mak
cd ..\ar65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\ca65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\cc65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\cl65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\da65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\grc
make -DTARGET=OS2 -f make\watcom.mak
cd ..\ld65
make -DTARGET=OS2 -f make\watcom.mak
cd ..\od65
make -DTARGET=OS2 -f make\watcom.mak
cd ..
clean:
cd common
make -f make\watcom.mak clean
cd ..\ar65
make -f make\watcom.mak clean
cd ..\ca65
make -f make\watcom.mak clean
cd ..\cc65
make -f make\watcom.mak clean
cd ..\cl65
make -f make\watcom.mak clean
cd ..\da65
make -f make\watcom.mak clean
cd ..\grc
make -f make\watcom.mak clean
cd ..\ld65
make -f make\watcom.mak clean
cd ..\od65
make -f make\watcom.mak clean
cd ..
strip:
@cd ar65
@-make -f make\watcom.mak strip
@cd ..\ca65
@-make -f make\watcom.mak strip
@cd ..\cc65
@-make -f make\watcom.mak strip
@cd ..\cl65
@-make -f make\watcom.mak strip
@cd ..\da65
@-make -f make\watcom.mak strip
@cd ..\grc
@-make -f make\watcom.mak strip
@cd ..\ld65
@-make -f make\watcom.mak strip
@cd ..\od65
@-make -f make\watcom.mak strip
@cd ..