llvm-6502/utils/Burg/Makefile
Reid Spencer 28421d0a80 Add missing things to the distribution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27650 91177308-0d34-0410-b5e6-96231b3b80d8
2006-04-13 06:27:20 +00:00

42 lines
1.4 KiB
Makefile

##===- utils/Burg/Makefile ---------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file was developed by the LLVM research group and is distributed under
# the University of Illinois Open Source License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
TOOLNAME = burg
BUILT_SOURCES = gram.tab.c gram.tab.h
EXTRA_DIST = gram.yc gram.tab.c gram.tab.h sample.gr burg.shar.gz COPYRIGHT Doc
include $(LEVEL)/Makefile.common
gram.tab.c gram.tab.h: gram.yc
$(Verb) $(BISON) -o gram.tab.c -d $<
$(ObjDir)/lex.o : gram.tab.h
clean::
$(Verb) $(RM) -rf gram.tab.h gram.tab.c core* *.aux *.log *.dvi sample sample.c tmp
doc.dvi: doc.tex
$(Verb) latex doc; latex doc
check:: $(ToolBuildPath) $(BUILD_SRC_DIR)/sample.gr
$(ToolBuildPath) -I <$(BUILD_SRC_DIR)/sample.gr >sample.c \
&& $(CC) $(CFLAGS) -o sample sample.c && ./sample
$(ToolBuildPath) -I $(BUILD_SRC_DIR)/sample.gr >tmp \
&& cmp tmp sample.c
$(ToolBuildPath) -I <$(BUILD_SRC_DIR)/sample.gr -o tmp \
&& cmp tmp sample.c
$(ToolBuildPath) -I $(BUILD_SRC_DIR)/sample.gr -o tmp \
&& cmp tmp sample.c
$(ToolBuildPath) -I -O0 <$(BUILD_SRC_DIR)/sample.gr >tmp \
&& cmp tmp sample.c
$(ToolBuildPath) -I -= <$(BUILD_SRC_DIR)/sample.gr >tmp \
&& cmp tmp sample.c
$(RM) -f tmp sample.c