SHELL = /bin/sh
PROGS = mkClassHelp mkWWWDoc sxEcho mkQTIndex scanDDL sxQT

default:
	@echo Please invoke this makefile using sdssmake. >&2
	@exit 1

install:
	@if [ "$(SDSSQT_DIR)" = "" ]; then \
		echo You have not specified a destination directory >&2; \
		exit 1; \
	fi

	cp Makefile $(PROGS) $(SDSSQT_DIR)/bin

clean:
	- /bin/rm -fr *~ .*~ core *.bak *.orig *.old .\#* \#*\#
