2003-05-09 04:19:58 +00:00
|
|
|
##----------------------------------------------------------*- Makefile -*-===##
|
2003-07-25 22:26:17 +00:00
|
|
|
##
|
2002-01-22 16:56:41 +00:00
|
|
|
## Common rules for generating, linking, and compiling via LLVM. This is
|
|
|
|
## used to implement a robust testing framework for LLVM
|
2003-07-25 22:26:17 +00:00
|
|
|
##
|
2003-05-09 04:19:58 +00:00
|
|
|
##-------------------------------------------------------------------------===##
|
2001-12-15 01:13:42 +00:00
|
|
|
|
2003-01-16 20:26:29 +00:00
|
|
|
# If the user specified a TEST= option on the command line, we do not want to do
|
|
|
|
# the default testing type. Instead, we change the default target to be the
|
|
|
|
# test:: target.
|
|
|
|
#
|
|
|
|
ifdef TEST
|
|
|
|
test::
|
|
|
|
endif
|
|
|
|
|
2003-08-22 14:09:46 +00:00
|
|
|
# We do not want to make .d files for tests!
|
|
|
|
DISABLE_AUTO_DEPENDENCIES=1
|
|
|
|
|
2001-12-15 01:13:42 +00:00
|
|
|
include ${LEVEL}/Makefile.common
|
|
|
|
|
2003-01-21 21:31:29 +00:00
|
|
|
# Specify ENABLE_STATS on the command line to enable -stats and -time-passes
|
|
|
|
# output from gccas and gccld.
|
2002-09-30 19:23:55 +00:00
|
|
|
ifdef ENABLE_STATS
|
2003-01-21 21:31:29 +00:00
|
|
|
STATS = -stats -time-passes
|
2002-09-30 19:23:55 +00:00
|
|
|
endif
|
|
|
|
|
2001-11-05 00:18:30 +00:00
|
|
|
.PHONY: clean default
|
|
|
|
|
2002-01-23 21:36:59 +00:00
|
|
|
# These files, which might be intermediate results, should not be deleted by
|
|
|
|
# make
|
|
|
|
.PRECIOUS: Output/%.bc Output/%.ll
|
|
|
|
.PRECIOUS: Output/%.tbc Output/%.tll
|
|
|
|
.PRECIOUS: Output/.dir
|
2002-04-07 08:11:07 +00:00
|
|
|
.PRECIOUS: Output/%.llvm.bc
|
|
|
|
.PRECIOUS: Output/%.llvm
|
2002-01-23 21:36:59 +00:00
|
|
|
|
|
|
|
LCCFLAGS += -O2 -Wall
|
2003-05-13 20:06:00 +00:00
|
|
|
LCXXFLAGS += -O2 -Wall
|
2001-11-05 00:18:30 +00:00
|
|
|
LLCFLAGS =
|
2003-06-28 22:35:46 +00:00
|
|
|
TESTRUNR = @echo Running test: $<; \
|
2005-02-18 20:24:09 +00:00
|
|
|
PATH="$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
|
2003-09-06 15:12:21 +00:00
|
|
|
$(LLVM_SRC_ROOT)/test/TestRunner.sh
|
2001-11-05 00:18:30 +00:00
|
|
|
|
2003-08-06 01:03:28 +00:00
|
|
|
LLCLIBS := $(LLCLIBS) -lm
|
2002-05-19 15:47:52 +00:00
|
|
|
|
2002-08-30 03:27:36 +00:00
|
|
|
clean::
|
2003-07-08 18:39:51 +00:00
|
|
|
$(RM) -f a.out core
|
2002-01-22 16:56:41 +00:00
|
|
|
$(RM) -rf Output/
|
2001-11-05 00:18:30 +00:00
|
|
|
|
2002-02-12 15:39:38 +00:00
|
|
|
# Compile from X.c to Output/X.ll
|
2003-09-06 15:12:21 +00:00
|
|
|
Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
|
2004-12-24 03:44:24 +00:00
|
|
|
-$(LLVMGCCWITHPATH) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
|
2001-11-05 00:18:30 +00:00
|
|
|
|
2003-05-13 20:06:00 +00:00
|
|
|
# Compile from X.cpp to Output/X.ll
|
2003-09-06 15:12:21 +00:00
|
|
|
Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
|
2004-12-24 03:44:24 +00:00
|
|
|
-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
|
2003-06-02 05:49:11 +00:00
|
|
|
|
|
|
|
# Compile from X.cc to Output/X.ll
|
2003-09-06 15:12:21 +00:00
|
|
|
Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
|
2004-12-24 03:44:24 +00:00
|
|
|
-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
|
2003-05-13 20:06:00 +00:00
|
|
|
|
2002-02-12 15:39:38 +00:00
|
|
|
# LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come
|
|
|
|
# from GCC output, so use GCCAS.
|
|
|
|
#
|
2002-01-23 21:36:59 +00:00
|
|
|
Output/%.bc: Output/%.ll $(LGCCAS)
|
2004-01-13 21:59:51 +00:00
|
|
|
-$(LGCCAS) $(STATS) $< -o $@
|
2001-11-05 00:18:30 +00:00
|
|
|
|
2002-02-12 15:39:38 +00:00
|
|
|
# LLVM Assemble from X.ll to Output/X.bc. Because we are coming directly from
|
|
|
|
# LLVM source, use the non-transforming assembler.
|
|
|
|
#
|
2004-01-13 21:56:30 +00:00
|
|
|
Output/%.bc: %.ll $(LLVMAS) Output/.dir
|
2009-08-25 15:38:29 +00:00
|
|
|
-$(LLVMAS) $< -o $@
|
2001-11-05 00:18:30 +00:00
|
|
|
|
2001-11-06 17:09:49 +00:00
|
|
|
## Cancel built-in implicit rules that override above rules
|
2001-11-05 00:18:30 +00:00
|
|
|
%: %.s
|
|
|
|
|
2001-11-06 17:09:49 +00:00
|
|
|
%: %.c
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
|