## 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.

SRCDIR = $(PACKAGE)/src/collection

## Define some of the tools.

include ../MakeTools

## Define the header files

HEADERS = $(shell ls *.h)

## Define the things that can be defined based upon previous definitions.

include ../MakeDefinitions

## Define the specific recipes.

all :

install : all $(addprefix $(INSTALLINCDIR)/, $(HEADERS))

CLEAN = $(addprefix $(INSTALLINCDIR)/, $(HEADERS))

## Define default dependencies and recipes for object files.

include ../MakeRecipes

## Create directories (TEMPORARY: fixed in gmake 3.80)

ifeq ($(MAKECMDGOALS),install)
_xxx2 := $(shell mkdir -p $(INSTALLINCDIR))
endif

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