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

⟦324b334cf⟧ TextFile

    Length: 1654 (0x676)
    Types: TextFile
    Names: »Makefile,v«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦bfebc70e2⟧ »EurOpenD3/mail/sendmail-5.65b+IDA-1.4.3.tar.Z« 
        └─⟦f9e35cd84⟧ 
            └─⟦this⟧ »sendmail/ida/doc/RCS/Makefile,v« 

TextFile

head     1.3;
branch   ;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.3
date     90.11.05.11.15.28;  author paul;  state Exp;
branches ;
next     1.2;

1.2
date     89.01.29.18.21.31;  author paul;  state Exp;
branches ;
next     1.1;

1.1
date     89.01.29.18.15.33;  author paul;  state Exp;
branches ;
next     ;


desc
@Doc Makefile
@


1.3
log
@Added SHELL variable.
@
text
@#
#  MAKEFILE -- The Documentation Files.
#  Copyright (c) 1987 Lennart Lovstrand
#  CIS Dept, Univ of Linkoping, Sweden
#
#  Use it, abuse it, but don't sell it.
#

SHELL=		/bin/sh
MAN1S=		dbm.1 mkdomext.1
MAN8S=		xalparse.8
MANS=		$(MAN1S) $(MAN8S)
DOC=		paper.ms
DOCS=		part1.ms part2.ms

#  The following definitions are inserted by ../Makefile
#  Change them there--not here!
MAN8DIR=	/usr/man/cat8
MAN8EXT=	.0
MAN1DIR=	/usr/man/cat1
MAN1EXT=	.0
TROFF=		rditroff

doc:		$(DOC)
		refer -e -l,2 -s $(DOC) | tbl | $(TROFF) -ms

doc.lpr:	$(DOC)
		refer -e -l,2 -s $(DOC) | tbl | nroff -ms > $@@

man:		$(MANS)
		for m in $(MANS); do \
			$(TROFF) -man $$m; \
		done

man.lpr:	$(MANS)
		for m in $(MANS); do \
			nroff -man $$m > $$m.lpr; \
		done

$(DOC):
		cat $(DOCS) >$(DOC)
		-rm -f $(DOCS)

install:	$(MANS)
		for m in $(MAN1S); do \
			nroff -man $$m > $(MAN1DIR)/`basename $$m .1`$(MAN1EXT); \
		done
		for m in $(MAN8S); do \
			nroff -man $$m > $(MAN8DIR)/`basename $$m .8`$(MAN8EXT); \
		done

clean:
		-rm -f \#* *~ *.lpr
@


1.2
log
@Revised for 4.3 BSD-Tahoe
-pbp
@
text
@d9 1
@


1.1
log
@Initial revision
@
text
@d45 1
a45 1
			cp $$m $(MAN1DIR)/`basename $$m .1`$(MAN1EXT); \
d48 1
a48 1
			cp $$m $(MAN8DIR)/`basename $$m .8`$(MAN8EXT); \
@