#
# kludged standard make Makefile - derived from GNU makefile .. kre
#
SOURCES=	eight.make fp.make ip.make spe-table.make
HS=		../lib/eight.h ../lib/fp.h ../lib/ip.h ../lib/spe-table.h
PRINT=		enscript
PRINTFILES=	mk-ip $(SOURCES)

all:	$(HS)

clean:
	@echo "These files can be removed: $(HS)"
	@echo $(HS) > REMOVABLE

../lib/eight.h: eight.make
	./eight.make > ../lib/eight.h

../lib/fp.h: fp.make
	./fp.make > ../lib/fp.h

../lib/ip.h: ip.make
	./ip.make > ../lib/ip.h

../lib/spe-table.h: spe-table.make
	./spe-table.make > ../lib/spe-table.h

print:
	$(PRINT) $(PRINTFILES)
