|
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: 756 (0x2f4) Types: TextFile Names: »Makefile«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/Sun/Sidtool/images/Makefile«
# # Makefile for the sidtool animate program. # Written by Rich Burridge - Sun Microsystems Australia (Melbourne). # # Version 2.1. - 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 = animate CFLAGS = -O LDFLAGS = OBJS = animate.o SRCS = animate.c all: $(BINARIES) install: all animate (cd .. ; cp images/sidtool.animate $(BINDIR)) clean: rm -f *~ *.o core animate sidtool.animate lint: lint $(SRCS) backup: cp animate.c animate.c~ animate: $(OBJS) cc $(LDFLAGS) -o animate $(OBJS) animate.o: animate.c