home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / flower.zip / makefile < prev    next >
Makefile  |  1997-06-23  |  834b  |  21 lines

  1. COMPILE = ICC /C /O+ /G5 /Wall /Wppt- /Wuni- /Wext- /Wtrd- /Tx /L+ /La+ /Ls+ /Lx+ /Ly+ /Fa+ /V"flower [$*] - Copyright (c) 1996, 1997 by Craig Schneiderwent"
  2. LINK = LINK386 /PM:VIO /ST:20480 /ALIGN:4 /L /M /EXEPACK
  3.  
  4. flower.exe: main.obj mniplist.obj printrpt.obj memfunc.obj updtlist.obj
  5.     $(LINK) main+mniplist+printrpt+memfunc+updtlist, flower, flower;
  6.  
  7. main.obj:     mydebug.h main.c mniplist.h printrpt.h structs.h memfunc.h updtlist.h
  8.     $(COMPILE) main.c
  9.  
  10. mniplist.obj: mydebug.h mniplist.c mniplist.h structs.h memfunc.h
  11.     $(COMPILE) mniplist.c
  12.  
  13. updtlist.obj: mydebug.h updtlist.c updtlist.h mniplist.h structs.h
  14.     $(COMPILE) updtlist.c
  15.  
  16. memfunc.obj: mydebug.h memfunc.c memfunc.h structs.h
  17.     $(COMPILE) memfunc.c
  18.  
  19. printrpt.obj: mydebug.h printrpt.c printrpt.h structs.h
  20.     $(COMPILE) printrpt.c
  21.