*** empty log message ***

This commit is contained in:
2007-02-07 14:51:44 +00:00
parent 72f2be9f67
commit 58b9a8e4f7
4 changed files with 27 additions and 9 deletions

View File

@ -3,7 +3,19 @@ CFLAGS = /nologo /MT /W3 /GR- -I..\..\.. -D_WIN32_WINNT=0x0400
LDFLAGS = /libpath:..\..\awk
LIBS = aseawk.lib kernel32.lib user32.lib
all: awk #rex2 rex3
!if !defined(CPU) || "$(CPU)" == ""
CPU = $(PROCESSOR_ARCHITECTURE)
!endif # CPU
!if "$(CPU)" == ""
CPU = i386
!endif
!if "$(CPU)" == "IA64"
LIBS = $(LIBS) bufferoverflowu.lib
!endif
all: awk
awk: awk.obj
link /nologo /out:$@.exe $(LDFLAGS) $(LIBS) awk.obj