# ------------------------------------------------------------------------
# Makefile: include files of the SpecC Reference Compiler
# ------------------------------------------------------------------------
#
# Modifications: (most recent first)
#
# RD 05/25/01	reduced contents to SCRC requirements
# ------------------------------------------------------------------------

# --- macros

include ../Makefile.macros

DIST	=	Makefile \
		Global.h GL_String.h \
		CcDriver.h \
		Parser.h \
		IntRep.h IntRep \
		bit.h sys/bit.h \
		sim.sh sim.h specc.h piped.h

ORIG	=	Makefile


# --- production rules

all:


# --- service rules

clean:
	-$(RM) core *.bak *.BAK
	-$(RM) *_pure_* .pure

dist:
	for file in $(DIST); do echo $(DISTPREFIX)/$$file >>$(DISTLIST); done

orig:
	for file in $(ORIG); do echo $(ORIGPREFIX)/$$file >>$(ORIGLIST); done


# --- EOF Makefile ---
