home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-09-20 | 404 b | 23 lines |
- # This makefile is written for dmake
- TRG= phoon
- SRC= amiga fullmoon xphoon \
- original/dtime original/phase \
- math/atan2 math/floor math/support
- OBJ= {$(SRC)}.o
- CC= /bin/gcc
- SHELL= /bin/sh
- CFLAGS= -O2
-
- %.o : %.c ; $(CC) $(CFLAGS) -o $@ -c $<
-
- $(TRG): $(OBJ)
- $(CC) -o $@ $(OBJ)
-
- clean:
- /c/delete $(OBJ) QUIET
-
- # DO NOT DELETE THIS LINE -- make depend depends on it.
-
- amiga.o: amiga.h
- xphoon.o: amiga.h
-