# ------------------------------------------------------------------------
# Makefile: documentation included with the SpecC Reference Compiler
# ------------------------------------------------------------------------
#
# Modifications: (most recent first)
#
# RD 05/24/01	reduced contents to SCRC requirements
# ------------------------------------------------------------------------

# --- macros

include ../Makefile.macros

ALL	=

DIST	=	Makefile \
		SpecC_Grammar.asc \
		SpecC_LRM.ps

ORIG	=	Makefile \
		SpecC_Grammar.asc


# --- production rules

all:	$(ALL)


# --- service rules

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

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

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


# --- EOF Makefile ---
