Watcom/NT fixes

git-svn-id: svn://svn.cc65.org/cc65/trunk@37 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-06-08 20:32:44 +00:00
parent 774b4bb424
commit 612627f5ca
3 changed files with 33 additions and 2 deletions

View File

@ -97,6 +97,7 @@ OBJS = anonname.obj \
symtab.obj \
util.obj
LIBS = ..\common\common.lib
.PRECIOUS $(OBJS:.obj=.c)
@ -112,7 +113,7 @@ cc65: cc65.exe
# Other targets
cc65.exe: $(OBJS)
cc65.exe: $(OBJS) $(LIBS)
$(LD) system $(SYSTEM) @&&|
DEBUG ALL
OPTION QUIET
@ -128,7 +129,6 @@ FILE datatype.obj
FILE declare.obj
FILE error.obj
FILE expr.obj
FILE funcact.obj
FILE funcdesc.obj
FILE function.obj
FILE global.obj
@ -151,5 +151,14 @@ FILE stdfunc.obj
FILE symentry.obj
FILE symtab.obj
FILE util.obj
LIBRARY ..\common\common.lib
|
clean:
@if exist *.obj del *.obj
@if exist cc65.exe del cc65.exe
strip:
@-wstrip cc65.exe

View File

@ -93,3 +93,12 @@ FILE main.obj
FILE mem.obj
|
clean:
@if exist *.obj del *.obj
@if exist cl65.exe del cl65.exe
strip:
@-wstrip cl65.exe

View File

@ -15,6 +15,10 @@ all:
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 ..\ld65
make -f make\watcom.mak
cd ..
@ -26,6 +30,10 @@ clean:
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 ..\ld65
make -f make\watcom.mak clean
cd ..
@ -35,8 +43,13 @@ strip:
@-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 ..\ld65
@-make -f make\watcom.mak strip
@cd ..