home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MAKEMAKE.ZIP / MAKEMAK.MAK < prev    next >
Encoding:
Text File  |  1988-02-21  |  879 b   |  37 lines

  1. # Custom make file generated by makemak for makemak.exe
  2. # This is the make file I used to compile the makemak program
  3.  
  4. target = makemak.exe
  5. cc = cl
  6. c_opts = /AS /Ox
  7. cdefs = 
  8. mc = masm
  9. m_opts = 
  10. mdefs = 
  11. link = link
  12. l_opts = 
  13. lmap = NUL
  14. libs =  sutil
  15. HDRS = makemak.h 
  16. SRCS = mak_cfg.c mak_help.c makemak.c 
  17. OBJS = mak_cfg.obj mak_help.obj makemak.obj  
  18.  
  19.  
  20. mak_cfg.obj:    mak_cfg.c makemak.h 
  21.     $(CC) $(C_OPTS) $(CDEFS) mak_cfg.c
  22.  
  23. mak_help.obj:    mak_help.c 
  24.     $(CC) $(C_OPTS) $(CDEFS) mak_help.c
  25.  
  26. makemak.obj:    makemak.c makemak.h 
  27.     $(CC) $(C_OPTS) $(CDEFS) makemak.c
  28.  
  29. $(TARGET):    $(OBJS) $(SRCS) $(HDRS)
  30.     $(LINK) $(L_OPTS) $(OBJS), $(TARGET), $(LMAP), $(LIBS);
  31.     exepack $(TARGET) $*.asd
  32.     erase $(TARGET)
  33.     rename $*.asd $*.exe
  34. # The above three lines are some of the few lines I add by hand since
  35. # they are the last things usually done to a program.
  36.  
  37.