## Define the appropriate configuration variables.

PACKAGE = /fsys2/u/usystem/software/u++-4.7

## Include the architecture dependent definitions.

.INCLUDE : ${PACKAGE}/CONFIG

## Define the path names of important directories.

MANDIR = ${PACKAGE}/doc/man

## Define some of the tools.

.INCLUDE : ${PACKAGE}/src/MakeTools

## Define the source files.

MAN = {\
u++ \
}.1

## Define the major recipes that the user may wish to invoke.

all : ;

install : ${INSTALLMANDIR} ${INSTALLMANDIR}/man1 ${INSTALLMANDIR}/man1/{${MAN}};

depend : ;

clean : ;

${INSTALLMANDIR}/man1/{${MAN}} : ${MANDIR}/{${MAN}}
	${INSTALL} $< $@
	chmod 0444 $@

## Define the specific recipes for the different pieces.

${INSTALLMANDIR} ${INSTALLMANDIR}/man1 :
	mkdir $@

## Local Variables: ##
## compile-command: "dmake" ##
## End: ##
