home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-10-06 | 507 b | 23 lines |
-
- INCLUDE = -Ignu:sources.libnix/headers
- OBJS = gnu:lib/libnix/libinit.o unmount.o halt_library.o
- LIBS = -lamiga
- LIBFLAGS = -noixemul -nostdlib -O3 -fbaserel
-
- all: libs:halt.library shutdown sdwarn
-
- .c.o:
- gcc $(LIBFLAGS) $(INCLUDE) $*.c -c -o $*.o
-
- shutdown: shutdown.c
- gcc -noixemul shutdown.c -o shutdown
-
- sdwarn: sdwarn.c
- gcc -noixemul sdwarn.c -o sdwarn
-
- libs:halt.library: $(OBJS)
- gcc $(LIBFLAGS) $(OBJS) -o $@ $(LIBS)
-
- clean:
- delete \#?.o libs:halt.library shutdown sdwarn
-