INCLUDES=	SC.h SCDebug.h SCLib.h SCTwiddle.h extern.h macdep.h

FILES= Makefile $(INCLUDES)

#------------------------------------------------------------
all:
	@echo nothing to make

# ------------------------------------------------------------
lint:
	cat /dev/null > lint.out

clean:
	-@ls $(FILES) > KeepList
	-@/bin/rm `ls | fgrep -v -x -f KeepList`

install: $(INCLUDES)
	@if ( test "$(REL)" != "" ) then \
	cp $(INCLUDES) $(REL)/include; \
	else echo No release directory; fi
#
