blob: e4c7d9a5b54f40687ab499a0f3b14c0b1f6685de [file] [log] [blame]
Chris Lattnere44f1db2003-11-23 18:12:22 +00001##===- projects/sample/Makefile ----------------------------*- Makefile -*-===##
2#
3# This is a sample Makefile for a project that uses LLVM.
4#
5##===----------------------------------------------------------------------===##
6
7#
8# Indicates our relative path to the top of the project's root directory.
9#
10LEVEL = ../../..
11
12#
13# Directories that needs to be built.
14#
15DIRS =
16
17#
18# Include the Master Makefile that knows how to build all.
19#
20include $(LEVEL)/Makefile.common
21
22LOGIC_TESTS = eq ne le ge gt lt false true
23BITWISE_TESTS = shl shr xor or and
24ARITHMETIC_TESTS = abs neg add sub mul div mod star_slash incr decr min max
25STACK_TESTS = drop drop2 nip nip2 dup dup2 swap swap2 over over2 rot rot2 \
26 rrot rrot2 tuck tuck2 roll pick select
27MEMORY_TESTS = memory
28CONTROL_TESTS = while return
29IO_TESTS = space tab out_chr out_num out_str
30
31TESTS = $(LOGIC_TESTS) $(ARITHMETIC_TESTS) $(BITWISE_TESTS) $(STACK_TESTS) \
32 $(MEMORY_TESTS) $(CONTROL_TESTS) $(IO_TESTS)
33
34all :: test_each
35
36test_each: $(TESTS)
Brian Gaeke3e4a2712003-11-24 02:57:25 +000037 @$(ECHO) "Running Tests..."
38 $(VERB)$(BUILD_SRC_DIR)/runtests $(BUILD_OBJ_DIR) $(TESTS)
Chris Lattnere44f1db2003-11-23 18:12:22 +000039
40% : %.s testing.s
Brian Gaeke3e4a2712003-11-24 02:57:25 +000041 @$(ECHO) "Compiling and Linking $< to $*"
42 $(VERB)gcc -ggdb -L$(BUILD_OBJ_ROOT)/lib/Debug testing.s -lstkr_runtime -o $* $*.s
Chris Lattnere44f1db2003-11-23 18:12:22 +000043
44%.s : %.bc
Brian Gaeke3e4a2712003-11-24 02:57:25 +000045 @$(ECHO) "Compiling $< to $*.s"
46 $(VERB)llc -f -o $*.s $<
Chris Lattnere44f1db2003-11-23 18:12:22 +000047
48ifdef OPTIMIZE
49%.bc : %.st $(BUILD_OBJ_ROOT)/tools/Debug/stkrc
Brian Gaeke3e4a2712003-11-24 02:57:25 +000050 @$(ECHO) "Compiling and Optimizing $< to $*.bc"
51 $(VERB)stkrc -e -o - $< | opt -stats -q -f -o $*.bc -adce -branch-combine -cee -constmerge -constprop -dce -die -gcse -globaldce -instcombine -pre
Chris Lattnere44f1db2003-11-23 18:12:22 +000052else
53%.bc : %.st $(BUILD_OBJ_ROOT)/tools/Debug/stkrc
Brian Gaeke3e4a2712003-11-24 02:57:25 +000054 @$(ECHO) "Compiling $< to $*.bc"
55 $(VERB)stkrc -e -f -o $*.bc $<
Chris Lattnere44f1db2003-11-23 18:12:22 +000056endif
57
58%.ll : %.bc
Brian Gaeke3e4a2712003-11-24 02:57:25 +000059 @$(ECHO) "Disassembling $< to $*.ll"
60 $(VERB)llvm-dis -o $*.ll $<
61
62TESTS_LL = $(TESTS:%=%.ll)
63TESTS_BC = $(TESTS:%=%.bc)
64TESTS_S = $(TESTS:%=%.s)
Chris Lattnere44f1db2003-11-23 18:12:22 +000065
66clean ::
Brian Gaeke3e4a2712003-11-24 02:57:25 +000067 $(VERB)rm -f gmon.out $(TESTS_LL) $(TESTS_BC) $(TESTS_S) $(TESTS) testing.bc testing.s testing.ll
Chris Lattnere44f1db2003-11-23 18:12:22 +000068
Brian Gaeke3e4a2712003-11-24 02:57:25 +000069.SUFFIXES: .st .s .ll .bc
Chris Lattnere44f1db2003-11-23 18:12:22 +000070.PRECIOUS: %.s %.ll %.bc %.st
Brian Gaeke3e4a2712003-11-24 02:57:25 +000071.PHONY: test_each