home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 206.lha / mklib / makefile < prev    next >
Makefile  |  1996-02-14  |  498b  |  16 lines

  1. # Mklib 1.0 - a source file generator for Amiga shared libraries
  2. # copyright 1988 Edwin Hoogerbeets
  3. #
  4. # This software is freely redistributable as long as there is no charge
  5. # beyond resonable copy fees and as long as this notice stays intact.
  6. #
  7. # Thanks to Jimm Mackraz for Elib on Fish 87, from which much of this
  8. # program is lifted. Also thanks to Neil Katin for his mylib.asm upon
  9. # which elib is based.
  10.  
  11. CFLAGS=-Z20000
  12. OBJS=mklib.o text.o
  13.  
  14. mklib: $(OBJS)
  15.         ln $(OBJS) -led -lc -o mklib
  16.