*** empty log message ***

This commit is contained in:
2006-11-19 06:15:58 +00:00
parent 7111ee2808
commit d28fa830ac
6 changed files with 67 additions and 30 deletions

View File

@ -17,7 +17,7 @@ STARTUP = c0x32w.obj
all: awk
awk: awk.obj
$(LD) $(LDFLAGS) $(STARTUP) awk.obj,awk.exe,,$(LIBS),,
$(LD) $(LDFLAGS) $(STARTUP) awk.obj,$@.exe,,$(LIBS),,
clean:
del $(OBJS) *.obj $(OUT)

View File

@ -6,7 +6,7 @@ LIBS = aseawk.lib kernel32.lib user32.lib
all: awk #rex2 rex3
awk: awk.obj
link /nologo /out:awk.exe $(LDFLAGS) $(LIBS) awk.obj
link /nologo /out:$@.exe $(LDFLAGS) $(LIBS) awk.obj
rex: rex.obj
link /nologo /out:rex.exe $(LDFLAGS) $(LIBS) rex.obj