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

⟦d1a5d442e⟧ TextFile

    Length: 728 (0x2d8)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦e7f64e0c0⟧ »EurOpenD3/mail/vmh.tar.Z« 
        └─⟦dcb95597f⟧ 
            └─⟦this⟧ »doc/Makefile« 

TextFile

#
# a makefile for the documentation for VMH
# that truly amazing mail program
#
MAN		=	vmh.1
MANDIR		=	$$HOME/usr/man
MSDIR		=	/usr/local/lib
MSTEXT		=	helpfile.ms

VPATH		=	RCS

.SUFFIXES	:	.1 .1,v .ms .ms,v .1.cat
.DEFAULT	:	all

.1,v.1 .ms,v.ms:
				co $< $@

man		:	$(MAN)
				for i in $(MAN); do \
					nroff -man $${i} > $${i}.cat ;\
				done

ms		:	$(MSTEXT)
				for i in $(MSTEXT); do \
					tbl $${i} | nroff -ms -Tlpr |\
						uniq | sed -e 's/_▶08◀//g' > \
						$${i}.nr;\
				done
all		:	man ms

install		:	all
				for i in $(MAN); do \
					install -c -m 644 $${i} $(MANDIR)/man1;\
					install -m 666 $${i}.cat \
						$(MANDIR)/cat1/$${i} ;\
				done
				install -m 644 helpfile.ms.nr \
					$(MSDIR)/vmh.helpfile