home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mmpm21tk.zip / TK / DUET1 / MAKEFILE < prev    next >
Text File  |  1992-07-21  |  1KB  |  38 lines

  1. # SCCSID = @(#)makefile    13.7 92/04/22
  2. #**************************************************************************
  3. #
  4. # MAKE file for Duet Player 1
  5. #
  6. # Assumes that the environment is set up for development.  Specifically,
  7. # the compiler, linker, rc and ipfc  should be in the path.  Also, the
  8. # environment variables for the tools must be properly set, e.g. LIB,
  9. # INCLUDE, IPFC. This should all be taken care of automatically by
  10. # installing the OS/2 Toolkit and the MMPM/2 Toolkit.
  11. #
  12. #**************************************************************************
  13.  
  14. CC        = icc
  15. LINK        = link386
  16.  
  17. BASELIBS    = DDE4MBS.LIB OS2386.LIB MMPM2.LIB
  18.  
  19. CFLAGS = /G3s /C+ /W3 /Ki- /Kb- /Ss+ /Gd- /Ms /Gm+ /DINCL_32
  20. DEBUG       = /Ti+ /O-
  21.  
  22. LFLAGS    = /map /nod /noe
  23.  
  24. all: duet1.exe duet1.hlp
  25.  
  26. duet1.exe: duet1.obj duet1.res duet1.def
  27.   $(LINK) duet1.obj, duet1.exe, $(LFLAGS) /ST:20000, $(BASELIBS), duet1.def
  28.   $(RC) duet1.res
  29.  
  30. duet1.obj: duet1.c duet1.h
  31.   $(CC) $(CFLAGS) duet1.c
  32.  
  33. duet1.res: duet1.rc duet1.dlg duet1.h duet1.ico
  34.   rc -r duet1.rc
  35.  
  36. duet1.hlp: duet1.ipf
  37.   ipfc duet1.ipf
  38.