SHELL = /bin/sh

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 *.sxql $(SDSSQT_DIR)/examples

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