home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-12-02 | 566 b | 29 lines |
-
- # from the libnixV1_1.lha archive (aminet):
- INCLUDE = -I/ADE/local/libnix/sources/headers
-
- OBJS = /ADE/lib/libnix/libinit.o queue_library.o
- LIBS = -lamiga
- LIBFLAGS = -noixemul -nostdlib -fbaserel
- CC = gcc
-
- all: queue.library
-
- .c.o:
- $(CC) $(LIBFLAGS) $(INCLUDE) $*.c -c -o $*.o
-
- queue.library: $(OBJS)
- $(CC) $(LIBFLAGS) $(OBJS) -o $@ $(LIBS)
-
- clean:
- delete \#?.o queue.library
-
- queue_test.o: queue_test.c
- $(CC) -noixemul queue_test.c -c -o queue_test.o
-
- qtest: queue_test.o
- $(CC) -noixemul queue_test.o -o qtest
-
- install:
- copy queue.library libs:queue.library
-