home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-08-30 | 388 b | 22 lines |
- # Makefile for brik (Amiga version, Lattice C)
- # Please see brik.h for configuration options.
-
- CFLAGS = -dAMIGA=1
- CC = lc
- OBJS = addbfcrc.o brik.o getopt.o initcrc.o
-
- brik: $(OBJS)
- blink with brik.lnk
-
- addbfcrc.o: addbfcrc.c
- $(CC) addbfcrc.c
-
- brik.o: brik.c brik.h assert.h
- $(CC) brik.c
-
- getopt.o: getopt.c brik.h
- $(CC) getopt.c
-
- initcrc.o: initcrc.c brik.h
- $(CC) initcrc.c
-