summaryrefslogtreecommitdiff
path: root/utils/Burg/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-04-20 18:39:19 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-04-20 18:39:19 +0000
commit63ed92e8820080ce99c4e35e8b2cbcca7f504bc0 (patch)
tree477fcb4b06dd0eabe81cd6c3ee50708b9797d220 /utils/Burg/Makefile
parenta29526275b45e6cebe569fe0b5dcacf9a55064b9 (diff)
downloadllvm-63ed92e8820080ce99c4e35e8b2cbcca7f504bc0.tar.gz
Burg not needed any more now that SparcV9 is gone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/Burg/Makefile')
-rw-r--r--utils/Burg/Makefile41
1 files changed, 0 insertions, 41 deletions
diff --git a/utils/Burg/Makefile b/utils/Burg/Makefile
deleted file mode 100644
index f40f3eb71d81..000000000000
--- a/utils/Burg/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-##===- 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