home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff233.lzh / Brik / makefile.amiga < prev    next >
Makefile  |  1989-07-29  |  388b  |  22 lines

  1. # Makefile for brik (Amiga version, Lattice C)
  2. # Please see brik.h for configuration options.
  3.  
  4. CFLAGS =    -dAMIGA=1
  5. CC =        lc
  6. OBJS =        addbfcrc.o brik.o getopt.o initcrc.o
  7.  
  8. brik:        $(OBJS)
  9.         blink with brik.lnk
  10.  
  11. addbfcrc.o:    addbfcrc.c
  12.         $(CC) addbfcrc.c
  13.  
  14. brik.o:        brik.c brik.h assert.h
  15.         $(CC) brik.c
  16.  
  17. getopt.o:    getopt.c brik.h
  18.         $(CC) getopt.c
  19.  
  20. initcrc.o:    initcrc.c brik.h
  21.         $(CC) initcrc.c
  22.