hanchenye-llvm-project/llvm/projects/Stacker/test/Makefile

69 lines
1.9 KiB
Makefile
Raw Normal View History

##===- projects/Stacker/test/Makefile ----------------------*- Makefile -*-===##
2003-11-24 02:12:22 +08:00
#
# This is the makefile that tests the various facilities of the Stacker language
2003-11-24 02:12:22 +08:00
#
##===----------------------------------------------------------------------===##
#
# Indicates our relative path to the top of the project's root directory.
#
LEVEL = ../
2003-11-24 02:12:22 +08:00
#
# Directories that need to be built.
2003-11-24 02:12:22 +08:00
#
DIRS =
#
# Include the Master Makefile that knows how to build all.
#
include $(LEVEL)/Makefile.common
LOGIC_TESTS = eq ne le ge gt lt false true
BITWISE_TESTS = shl shr xor or and
ARITHMETIC_TESTS = abs neg add sub mul div mod star_slash incr decr min max
STACK_TESTS = drop drop2 nip nip2 dup dup2 swap swap2 over over2 rot rot2 \
rrot rrot2 tuck tuck2 roll pick select
MEMORY_TESTS = memory
CONTROL_TESTS = while return
IO_TESTS = space tab out_chr out_num out_str
TESTS = $(LOGIC_TESTS) $(ARITHMETIC_TESTS) $(BITWISE_TESTS) $(STACK_TESTS) \
$(MEMORY_TESTS) $(CONTROL_TESTS) $(IO_TESTS)
STKRC_EXEC = $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)/stkrc
2003-11-24 02:12:22 +08:00
all :: test_each
test_each: $(TESTS)
$(Echo) "Running Tests..."
$(Verb) LD_LIBRARY_PATH=$(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) $(BUILD_SRC_DIR)/runtests $(BUILD_OBJ_DIR) $(TESTS)
2003-11-24 02:12:22 +08:00
%.bc : %.st Makefile
$(Echo) "Compiling And Optimizing $< to $*.bc"
$(Verb)$(STKRC_EXEC) -f -O4 -s 2048 -o $*.bc $(BUILD_SRC_DIR)/$*.st
2003-11-24 02:12:22 +08:00
%.s : %.bc testing.bc
$(Echo) "Assembling $< to $*.s"
$(Verb)$(LLINK) $*.bc testing.bc -o $*.bcl
$(Verb)$(LLC) -f -o $*.s $*.bcl
2003-11-24 02:12:22 +08:00
% : %.s
$(Echo) "Linking $*"
$(Verb)$(CC) -ggdb -L$(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) -lstkr_runtime -o $* $*.s
2003-11-24 02:12:22 +08:00
%.ll : %.bc
$(Echo) "Disassembling $< to $*.ll"
$(Verb)$(LDIS) -dis -o $*.ll $<
TESTS_LL = $(TESTS:%=%.ll)
TESTS_BC = $(TESTS:%=%.bc)
TESTS_S = $(TESTS:%=%.s)
2003-11-24 02:12:22 +08:00
clean ::
$(Verb)rm -f gmon.out $(TESTS_LL) $(TESTS_BC) $(TESTS_S) $(TESTS) testing.bc testing.s testing.ll
2003-11-24 02:12:22 +08:00
.SUFFIXES: .st .s .ll .bc
2003-11-24 02:12:22 +08:00
.PRECIOUS: %.s %.ll %.bc %.st
.PHONY: test_each