home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 14 Text / 14-Text.zip / RB3774.ZIP / DMPHONE.ZIP / DMPHONE.MAK < prev    next >
Text File  |  1992-05-07  |  1KB  |  40 lines

  1. #===================================================================
  2. #
  3. #   Dmphone Make file
  4. #
  5. #===================================================================
  6.  
  7. include e:\toolkt20\c\samples\ibmsamp.inc
  8.  
  9. CC   =        icc /Kb /c /Ti /Gd- /Se /Re /ss /Ms /Gm+ /D__MIG_LIB__
  10. LFLAGS     = /DE /NOE /NOD /ALIGN:16 /EXEPACK /M
  11.  
  12. HEADERS = dmphone.h
  13.  
  14. #-------------------------------------------------------------------
  15. #   A list of all of the object files
  16. #-------------------------------------------------------------------
  17. ALL_OBJ1 = dmphone.obj
  18.  
  19.  
  20. all: dmphone.exe
  21.  
  22.  
  23. dmphone.l: dmphone.mak
  24.     echo $(ALL_OBJ1)            > dmphone.l
  25.     echo dmphone.exe           >> dmphone.l
  26.     echo dmphone.map           >> dmphone.l
  27.     echo $(MTLIBS)                >> dmphone.l
  28.     echo dmphone.def           >> dmphone.l
  29.  
  30.  
  31.  
  32.  
  33. dmphone.res: dmphone.rc dmphone.ico dmphone.h
  34.  
  35. dmphone.obj: dmphone.c $(HEADERS)
  36.  
  37. dmphone.exe: $(ALL_OBJ1)  dmphone.def dmphone.l dmphone.res
  38.     $(LINK) /C @dmphone.l
  39.     rc dmphone.res dmphone.exe
  40.