mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00:00
cc2d1e25f3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17359 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.4 KiB
Makefile
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
|
|
|
|
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
|