1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-28 20:29:46 +00:00

Added the od65 directory

git-svn-id: svn://svn.cc65.org/cc65/trunk@231 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-29 22:35:34 +00:00
parent 8f320c4ab4
commit 7158553772
2 changed files with 10 additions and 1 deletions

View File

@ -13,7 +13,8 @@ SUBDIRS = \
cc65 \
cl65 \
grc \
ld65
ld65 \
od65
.PHONY: all
all:

View File

@ -23,6 +23,8 @@ all:
make -f make\watcom.mak
cd ..\ld65
make -f make\watcom.mak
cd ..\od65
make -f make\watcom.mak
cd ..
dos:
@ -40,6 +42,8 @@ dos:
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 ..
clean:
@ -57,6 +61,8 @@ clean:
make -f make\watcom.mak clean
cd ..\ld65
make -f make\watcom.mak clean
cd ..\od65
make -f make\watcom.mak clean
cd ..
strip:
@ -72,6 +78,8 @@ strip:
@-make -f make\watcom.mak strip
@cd ..\ld65
@-make -f make\watcom.mak strip
@cd ..\od65
@-make -f make\watcom.mak strip
@cd ..