1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-01 11:29:27 +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 \ cc65 \
cl65 \ cl65 \
grc \ grc \
ld65 ld65 \
od65
.PHONY: all .PHONY: all
all: all:

View File

@ -23,6 +23,8 @@ all:
make -f make\watcom.mak make -f make\watcom.mak
cd ..\ld65 cd ..\ld65
make -f make\watcom.mak make -f make\watcom.mak
cd ..\od65
make -f make\watcom.mak
cd .. cd ..
dos: dos:
@ -40,6 +42,8 @@ dos:
make -DTARGET=DOS32 -f make\watcom.mak make -DTARGET=DOS32 -f make\watcom.mak
cd ..\ld65 cd ..\ld65
make -DTARGET=DOS32 -f make\watcom.mak make -DTARGET=DOS32 -f make\watcom.mak
cd ..\od65
make -DTARGET=DOS32 -f make\watcom.mak
cd .. cd ..
clean: clean:
@ -57,6 +61,8 @@ clean:
make -f make\watcom.mak clean make -f make\watcom.mak clean
cd ..\ld65 cd ..\ld65
make -f make\watcom.mak clean make -f make\watcom.mak clean
cd ..\od65
make -f make\watcom.mak clean
cd .. cd ..
strip: strip:
@ -72,6 +78,8 @@ strip:
@-make -f make\watcom.mak strip @-make -f make\watcom.mak strip
@cd ..\ld65 @cd ..\ld65
@-make -f make\watcom.mak strip @-make -f make\watcom.mak strip
@cd ..\od65
@-make -f make\watcom.mak strip
@cd .. @cd ..