home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 3: The Continuation / 17-Bit_The_Continuation_Disc.iso / amigan / amigan 10 / bobs / makefile < prev    next >
Encoding:
Makefile  |  1994-01-27  |  503 b   |  17 lines

  1. # Manx makefile for dbuff.gels. This is an int == 32 bits build. Note that
  2. # the +l flag specifies this and the -S flag tells it to shut up about
  3. # ptr/int assignment problems. DCW.
  4.  
  5. CFLAGS =    +l -S
  6. OBJS   =    dbuff.gels.o geltools.o
  7.  
  8. dbuff.gels:    $(OBJS)
  9.         ln -o dbuff.gels $(OBJS) -lc32
  10.  
  11. # Manx doesn't like more than one dot in a filename!
  12. dbuff.gels.o:    dbuff.gels.c
  13.         cc $(CFLAGS) dbuff.gels.c
  14.  
  15. #Neither does Lattice C! Change filenames to underbars:
  16. dbuff_gels.c, or the quad file will ne'er be found.
  17.