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

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