|
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 - download
Length: 346 (0x15a) Types: TextFile Names: »Makefile«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/ped/Makefile«
# Makefile for ped, version 1. # # Installation parameters: BINDIR=$$HOME/bin MANDIR=/dev/null # CFLAGS= -O SOURCES=Makefile gigi.h ped.c ped.1 all: ped ped: ped.o gigi.h cc -o ped ped.o install: ped ped.1 install -c ped $(BINDIR) install -c ped.1 $(MANDIR) shar: ped.shar ped.shar: $(SOURCES) shar $(SOURCES) > ped.shar clean: rm -f *.o ped