## Define the appropriate configuration variables.

PACKAGE = /fsys2/u2/usystem/software/u++-5.0.1

## 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 text source files.

MAN = $(addsuffix .1, \
u++ \
)

# Directives #

all : ;

install : $(INSTALLMANDIR) $(INSTALLMANDIR)/man1 $(INSTALLMANDIR)/man1/$(MAN);

depend : ;

clean : ;
	rm -f $(INSTALLMANDIR)/man1/$(MAN)

$(INSTALLMANDIR)/man1/$(MAN) : $(MANDIR)/$(MAN)
	$(INSTALL) $< $@
	$(CHMODDATA) $@

## Define the specific recipes for the different pieces.

$(INSTALLMANDIR) $(INSTALLMANDIR)/man1 :
	mkdir $@

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