home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-02-01 | 1.0 KB | 51 lines |
- #
- # Makefile V1.1 for accrete
- #
- # © Copyright Ethan Dicks, 1992, 1994
- # Permission to distribute freely for non-commercial purposes granted
- #
- #
- # V1.0 - 09-Apr-1992 Created
- # V1.1 - 02-Feb-1994 Updated for SAS/C v6.3
- #
- #
- CC= sc
-
- # Uncomment either of the two following lines to change the nature of the
- # text output that Accrete spews forth during a run
-
- #CFLAGS= define=VERBOSE
- #CFLAGS= define=SILENT
-
- LFLAGS= SC SD ND
-
- .c.o:
- $(CC) $* $(CFLAGS)
-
- # Define list of object files needed to rebuild the executables
-
- ACCOBJ= accrete.o display.o enviro.o main.o utils.o
- #ACCOBJ= main.o
-
- # Now, list all the dependencies
-
- all: accrete
-
- accrete: $(ACCOBJ)
- slink <WITH <
- FROM lib:c.o $(ACCOBJ)
- LIBRARY lib:scm.lib lib:sc.lib lib:amiga.lib
- TO $@ $(LFLAGS)
- <
-
- clean:
- -delete \#?.o
-
- # Source module dependencies
-
- accrete.o: accrete.c structs.h const.h accrete.h
- display.o: display.c structs.h const.h accrete.h
- enviro.o: enviro.c structs.h const.h accrete.h
- main.o: main.c structs.h const.h accrete.h
- utils.o: utils.c structs.h const.h accrete.h
-