DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦909c9fb13⟧ TextFile

    Length: 449 (0x1c1)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/qterm/Makefile« 

TextFile

#
# $Header: Makefile,v 1.1 86/12/22 10:45:46 mcooper Exp $
#
# Makefile for QTERM
#
BIN=/usr/usc/bin
MAN=/usr/usc/man/man1

OBJS = qterm.o table.o

#
# Use "-DUSG5" for $(CFLAGS) below, if your system is Unix System V.
#
CFLAGS = -O

qterm: $(OBJS)
	cc $(CFLAGS) $(OBJS) -o qterm

shar:
	shar README Makefile table.c qterm.c qterm.1 > qterm.shar

clean:
	rm -f *.o core log 

install: qterm qterm.1
	install qterm $(BIN)
	install -c qterm.1 $(MAN)