home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Reverse Code Engineering RCE CD +sandman 2000
/
ReverseCodeEngineeringRceCdsandman2000.iso
/
RCE
/
Mib
/
CRUECHAT.ZIP
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1998-11-17
|
659b
|
32 lines
# Make file for Turbo Assembler WAP32 example.
# Copyright (c) 1996 by Borland International, Inc.
# make -B Will build phone32.exe
# make -B -DDEBUG Will build the debug version of phone32.exe
NAME = cruechat
OBJS = $(NAME).obj
DEF = $(NAME).def
RES = $(NAME).res
!if $d(DEBUG)
TASMDEBUG=/zi
LINKDEBUG=/v
!else
TASMDEBUG=
LINKDEBUG=
!endif
!if $d(MAKEDIR)
IMPORT=$(MAKEDIR)\..\lib\import32
!else
IMPORT=import32
!endif
$(NAME).EXE: $(OBJS) $(DEF)
tlink32 /Tpe /aa /c $(LINKDEBUG) $(OBJS),$(NAME),, $(IMPORT), $(DEF), $(RES)
.asm.obj:
tasm32 $(TASMDEBUG) /l /ml /m2 $&.asm