|
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 - downloadIndex: ┃ M T ┃
Length: 1352 (0x548) Types: TextFile Names: »Makefile«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/calctool/Makefile«
# # Makefile for calctool, a simple calculator. # # Copyright (c) Rich Burridge - January 1987. # Sun Microsystems, Australia - All rights reserved. # # Version 1.2. # # 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. # # # <<<VERSION DEPENDENT DEFINITIONS (SPECIAL and LIBS).>>> # # Suntool version. # #SPECIAL = -DSUNTOOL #LIBS = -lm -lsuntool -lsunwindow -lpixrect # # Other version. # SPECIAL = LIBS = -lm # <<<END OF VERSION DEPENDENT DEFINITIONS.>>> BINARIES = calctool BINDIR = . CFLAGS = -g $(SPECIAL) LDFLAGS = -g OBJS = calctool.o functions.o SRCS = calctool.c functions.c HDRS = calctool.h # # The following commands are declared. # all: $(BINARIES) release: $(BINARIES) strip $(BINARIES) # # General Makefile stuff. # backup: cp calctool.h calctool.h~ cp calctool.c calctool.c~ cp calctool.help calctool.help~ cp functions.c functions.c~ clean: rm -f *.o core lint: lint $(SPECIAL) $(SRCS) $(LIBS) # # calctool specific stuff. # calctool: $(OBJS) cc $(LDFLAGS) -o calctool $(OBJS) $(LIBS) calctool.o: calctool.c $(HDRS) functions.o: functions.c $(HDRS)