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

⟦04d3a9db4⟧ TextFile

    Length: 691 (0x2b3)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

#
# Makefile for news manual pages
#
# If you install news documentation in an appropriately structured
#	man tree (e.g. /usr/local/man) then you can do this better
#

DESTDIR =
MANDIR = /usr/man/mann

MANFILES = checknews.1 expire.8 getdate.3 inews.8 news.5 newsrc.5 postnews.1 \
	readnews.1 recnews.8 sendbatch.8 sendnews.8 uurec.8 vnews.1
NMANFILES = checknews.n expire.n getdate.n inews.n news.n newsrc.n postnews.n \
	readnews.n recnews.n sendbatch.n sendnews.n uurec.n vnews.n

.SUFFIXES: .n .1 .3 .5 .8

.1.n .3.n .5.n .8.n:
	cp $< $@

all: $(NMANFILES)

install: $(NMANFILES)
	-for i in $(NMANFILES); do (install -c -m 0444 $$i $(DESTDIR)$(MANDIR)); done

clean:
	rm -f $(NMANFILES)