1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +00:00

Added an os2 target

git-svn-id: svn://svn.cc65.org/cc65/trunk@281 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-14 10:21:46 +00:00
parent 614b50a9b0
commit 4f8a02e253

View File

@@ -6,9 +6,16 @@ SUBDIRS = \
common \
ar65 \
ca65 \
ld65
cc65 \
cl65 \
grc \
ld65 \
od65
all:
all: nt
nt:
cd common
make -f make\watcom.mak
cd ..\ar65
@@ -46,6 +53,25 @@ dos:
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 ..\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