#############################################
#
# Makefile for distribution building utilies
#
# Yannis Chicha, April 2004
#
#############################################
#
#  2006/Dec/22
#
#  On Solaris, the value of PWD does not change when make is invoked
#  recursively.  Consequently, it is necessary to explicitly set it
#  at the start of the makefile.
#
PWD = $(shell pwd)

all:
	@echo "Usage:"
	@echo "   make licensing    => make licensing kit programs"

install: utilities instutils

#------------------------------------------------

utilities: licensing

licensing:
	@(cd licensing_kit; $(MAKE) licensing)

#------------------------------------------------

instutils: instlicensing

instlicensing:
	@(cd licensing_kit; $(MAKE) install)
