home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 595.lha / Notify_v1.1 / Source / makefile < prev    next >
Makefile  |  1991-08-03  |  610b  |  26 lines

  1. #
  2. #    Makefile for Notify
  3. #
  4. #        You can call it with the argument NotifyDB to create
  5. #        the debug version of notify.  Note that I use pre-
  6. #        compiled headers with the compiler.
  7. #
  8.  
  9. Notify: Notify.o DosWedge.o
  10.     blink c.o Notify.o DosWedge.o to Notify lib lib:lcr.lib
  11.  
  12. NotifyDB: NotifyDB.o DosWedge.o
  13.     blink c.o NotifyDB.o DosWedge.o to NotifyDB lib lib:lcr.lib
  14.  
  15. NotifyDB.o: Notify.c
  16.     lc -dDEBUG -oNotifyDB.o Notify.c
  17.     copy Notify.c MoreSource:DosWedge/
  18.  
  19. Notify.o: Notify.c
  20.     lc Notify.c
  21.     copy Notify.c MoreSource:DosWedge/
  22.  
  23. DosWedge.o: DosWedge.asm
  24.     SAS2:lc/asm DosWedge.asm
  25.     copy DosWedge.asm MoreSource:DosWedge/
  26.