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
Index: ┃ M T

⟦29638b8c6⟧ TextFile

    Length: 748 (0x2ec)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

#	Makefile for table.c, method of producing a single terminal
#	table for nroff under USG UNIX.
#	Makefile written by Bruce Townsend (utcs!bnr-vpa!bruce)
#	and Ian Darwin (utcs!darwin!ian)
#	March 6, 1985.

TABFILES = tabXXX
DESTDIR = /usr/lib/term
LINTTAB = tabXXX
DEFS =
CFLAGS = $(DEFS) -O
LDFLAGS = -s
LFLAGS = $(DEFS)

$(TABFILES): dummy_file
	$(MAKE) -$(MAKEFLAGS) table.o $@.o
	cc $(LDFLAGS) table.o $@.o
	./a.out $@

# This dummy_file should never exist, it is a kludge to get Make to
# always execute cc.
dummy_file:
	@rm -f dummy_file

all:	$(TABFILES)

install: $(TABFILES)
	mv $(TABFILES) $(DESTDIR)

lint:	table.c
	lint $(LFLAGS) table.c $(LINTTAB).c

elbat:	elbat.o
	cc $(LDFLAGS) elbat.o -o elbat

clean:
	rm -f a.out tab*.o elbat.o