2003-05-09 06:19:58 +02:00
|
|
|
##----------------------------------------------------------*- Makefile -*-===##
|
2003-07-26 00:26:17 +02:00
|
|
|
##
|
2002-01-22 17:56:41 +01:00
|
|
|
## Common rules for generating, linking, and compiling via LLVM. This is
|
|
|
|
## used to implement a robust testing framework for LLVM
|
2003-07-26 00:26:17 +02:00
|
|
|
##
|
2003-05-09 06:19:58 +02:00
|
|
|
##-------------------------------------------------------------------------===##
|
2001-12-15 02:13:42 +01:00
|
|
|
|
2003-01-16 21:26:29 +01: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 16:09:46 +02:00
|
|
|
# We do not want to make .d files for tests!
|
|
|
|
DISABLE_AUTO_DEPENDENCIES=1
|
|
|
|
|
2001-12-15 02:13:42 +01:00
|
|
|
include ${LEVEL}/Makefile.common
|
|
|
|
|
2003-01-21 22:31:29 +01:00
|
|
|
# Specify ENABLE_STATS on the command line to enable -stats and -time-passes
|
|
|
|
# output from gccas and gccld.
|
2002-09-30 21:23:55 +02:00
|
|
|
ifdef ENABLE_STATS
|
2003-01-21 22:31:29 +01:00
|
|
|
STATS = -stats -time-passes
|
2002-09-30 21:23:55 +02:00
|
|
|
endif
|
|
|
|
|
2001-11-05 01:18:30 +01:00
|
|
|
.PHONY: clean default
|
|
|
|
|
2002-01-23 22:36:59 +01: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 10:11:07 +02:00
|
|
|
.PRECIOUS: Output/%.llvm.bc
|
|
|
|
.PRECIOUS: Output/%.llvm
|
2002-01-23 22:36:59 +01:00
|
|
|
|
|
|
|
LCCFLAGS += -O2 -Wall
|
2003-05-13 22:06:00 +02:00
|
|
|
LCXXFLAGS += -O2 -Wall
|
2001-11-05 01:18:30 +01:00
|
|
|
LLCFLAGS =
|
2003-06-29 00:35:46 +02:00
|
|
|
TESTRUNR = @echo Running test: $<; \
|
2005-02-18 21:24:09 +01:00
|
|
|
PATH="$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
|
2003-09-06 17:12:21 +02:00
|
|
|
$(LLVM_SRC_ROOT)/test/TestRunner.sh
|
2001-11-05 01:18:30 +01:00
|
|
|
|
2003-08-06 03:03:28 +02:00
|
|
|
LLCLIBS := $(LLCLIBS) -lm
|
2002-05-19 17:47:52 +02:00
|
|
|
|
2002-08-30 05:27:36 +02:00
|
|
|
clean::
|
2003-07-08 20:39:51 +02:00
|
|
|
$(RM) -f a.out core
|
2002-01-22 17:56:41 +01:00
|
|
|
$(RM) -rf Output/
|
2001-11-05 01:18:30 +01:00
|
|
|
|
2002-02-12 16:39:38 +01:00
|
|
|
# Compile from X.c to Output/X.ll
|
2003-09-06 17:12:21 +02:00
|
|
|
Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
|
2004-12-24 04:44:24 +01:00
|
|
|
-$(LLVMGCCWITHPATH) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
|
2001-11-05 01:18:30 +01:00
|
|
|
|
2003-05-13 22:06:00 +02:00
|
|
|
# Compile from X.cpp to Output/X.ll
|
2003-09-06 17:12:21 +02:00
|
|
|
Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
|
2004-12-24 04:44:24 +01:00
|
|
|
-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
|
2003-06-02 07:49:11 +02:00
|
|
|
|
|
|
|
# Compile from X.cc to Output/X.ll
|
2003-09-06 17:12:21 +02:00
|
|
|
Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
|
2004-12-24 04:44:24 +01:00
|
|
|
-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
|
2003-05-13 22:06:00 +02:00
|
|
|
|
2002-02-12 16:39:38 +01: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 22:36:59 +01:00
|
|
|
Output/%.bc: Output/%.ll $(LGCCAS)
|
2004-01-13 22:59:51 +01:00
|
|
|
-$(LGCCAS) $(STATS) $< -o $@
|
2001-11-05 01:18:30 +01:00
|
|
|
|
2002-02-12 16:39:38 +01: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 22:56:30 +01:00
|
|
|
Output/%.bc: %.ll $(LLVMAS) Output/.dir
|
|
|
|
-$(LLVMAS) -f $< -o $@
|
2001-11-05 01:18:30 +01:00
|
|
|
|
2001-11-06 18:09:49 +01:00
|
|
|
## Cancel built-in implicit rules that override above rules
|
2001-11-05 01:18:30 +01:00
|
|
|
%: %.s
|
|
|
|
|
2001-11-06 18:09:49 +01:00
|
|
|
%: %.c
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
|