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


1.3
date	94.03.17.22.19.44;	author marc;	state Exp;
branches;
next	1.2;

1.2
date	94.03.05.08.18.32;	author aoki;	state Exp;
branches;
next	1.1;

1.1
date	93.02.19.00.48.50;	author marc;	state Exp;
branches;
next	;


desc
@makefile
@


1.3
log
@checkin for 4.2 release - 4.2 updates
@
text
@.include <postgres.global.mk>

.MAIN: all

PG_DOCDIR=${POSTDOCDIR}

SRCS= postgres-setup.me release4.2.me
DOCOBJS= ${SRCS:S/.me/.cat/g} ${SRCS:S/.me/.ps/g}

SUBDIRS= implementation papers user_manual

all: ${DOCOBJS}

install: all
	@@-if [ ! -d ${PG_DOCDIR} ]; then \
		mkdir ${PG_DOCDIR}; \
	fi
	for i in ${DOCOBJS}; do \
		${INSTALL} -m 444 $$i ${PG_DOCDIR}/$$i; \
	done
	for i in ${SUBDIRS}; do \
		(cd ${.CURDIR}/$$i; bmake all install); \
	done

.include <postgres.prog.mk>
@


1.2
log
@stuff moved around
@
text
@d5 1
a5 2
SRCS= postgres-setup.me
OBJS= ${SRCS:S/.me/.cat/g} ${SRCS:S/.me/.ps/g}
d7 2
a8 1
all: ${OBJS}
d10 15
@


1.1
log
@Initial revision
@
text
@d5 2
a6 1
.SUFFIXES: .cat .ps .me
d8 1
a8 1
DOCSRCS= manual.me postgres-setup.me release4.1.me
a9 14
NROFF=nroff

GROFF=groff -spt

DOCOBJS= ${DOCSRCS:S/.me/.cat/g} ${DOCSRCS:S/.me/.ps/g}

.me.cat:
	${GROFF} -me -Tascii ${.IMPSRC} > ${.TARGET}

.me.ps:
	${GROFF} -me -Tps ${.IMPSRC} > ${.TARGET}

all: ${DOCOBJS}

@
