home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / handler.lzh / HANDLER / MAKEFILE.ORIG < prev    next >
Text File  |  1991-11-01  |  538b  |  38 lines

  1. # MY-HANDLER - Phillip Lindsay - (C) Commodore 1986
  2. #
  3. #
  4.  
  5. #DEBUG  = -dDEBUG
  6.  
  7. #DFILE  =  df0:lib/myprintf.o
  8. #DFILE  =  df0:lib/debug.o
  9.  
  10. CFLAGS = +lcd -dMANX $(DEBUG)
  11.  
  12. LIBS   =  $(DFILE) -lc32 
  13.  
  14. OFILES = my-handler.o misc.o
  15. HFILES = my-handler.h
  16.  
  17.  
  18. .asm.o:
  19.     as $*.asm
  20.  
  21. all: allhand ihand
  22.  
  23. allhand: $(OFILES)
  24.     ln -w $(OFILES) $(LIBS)
  25.  
  26. my-handler.o: my-handler.c $(HFILES)
  27.  
  28. misc.o : misc.c $(HFILES)
  29.  
  30. # here is the install program
  31.  
  32. ihand: ihand.o adddosnode.o
  33.     ln -w ihand.o adddosnode.o -lc32
  34.  
  35. ihand.o: ihand.c  
  36.  
  37. adddosnode.o: adddosnode.asm
  38.