home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Mib / CRUECHAT.ZIP / MAKEFILE < prev    next >
Text File  |  1998-11-17  |  659b  |  32 lines

  1. #   Make file for Turbo Assembler WAP32 example.
  2. #   Copyright (c) 1996 by Borland International, Inc.
  3.  
  4. #       make -B                 Will build phone32.exe
  5. #       make -B -DDEBUG         Will build the debug version of phone32.exe
  6.  
  7. NAME = cruechat
  8. OBJS = $(NAME).obj
  9. DEF  = $(NAME).def
  10. RES  = $(NAME).res
  11.  
  12. !if $d(DEBUG)
  13. TASMDEBUG=/zi
  14. LINKDEBUG=/v
  15. !else
  16. TASMDEBUG=
  17. LINKDEBUG=
  18. !endif
  19.  
  20. !if $d(MAKEDIR)
  21. IMPORT=$(MAKEDIR)\..\lib\import32
  22. !else
  23. IMPORT=import32
  24. !endif
  25.  
  26.  
  27. $(NAME).EXE: $(OBJS) $(DEF)
  28.   tlink32 /Tpe /aa /c $(LINKDEBUG) $(OBJS),$(NAME),, $(IMPORT), $(DEF), $(RES) 
  29.  
  30. .asm.obj:
  31.    tasm32 $(TASMDEBUG) /l /ml /m2 $&.asm
  32.