|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 1061 (0x425) Types: TextFile Names: »Makefile«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/Sun/Asteroids/Makefile«
# # Makefile for the asteroids game. # Written by Rich Burridge - Sun Microsystems Australia (Melbourne). # # Version 3.0. - April 1987. # # No responsibility is taken for any errors inherent either in the comments # or the code of this program, but if reported to me then an attempt will # be made to fix them. # BINARIES = asteroids BINDIR = . CFLAGS = -g LDFLAGS = -g OBJS = ast_main.o ast_stuff.o ast_sun.o SRCS = ast_main.c ast_stuff.c ast_sun.c LIBS = -lsuntool -lsunwindow -lpixrect HDRS = asteroids.h bltstuff.h # # The following commands are declared: # all: $(BINARIES) backup: cp ast_main.c ast_main.c~ cp ast_stuff.c ast_stuff.c~ cp ast_sun.c ast_sun.c~ cp asteroids.h asteroids.h~ lint: lint $(SRCS) $(LIBS) clean: rm -f *.o core # # General Makefile stuff. # asteroids: $(OBJS) cc $(LDFLAGS) -o asteroids $(OBJS) $(LIBS) ast_main.o: ast_main.c $(HDRS) ast_stuff.o: ast_stuff.c $(HDRS) ast_sun.o: ast_sun.c $(HDRS)