mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
f8d1fc4a4e
llvm-svn: 10192
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
##===- projects/sample/Makefile ----------------------------*- Makefile -*-===##
|
|
#
|
|
# This is a sample Makefile for a project that uses LLVM.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
#
|
|
# Indicates our relative path to the top of the project's root directory.
|
|
#
|
|
LEVEL = ../../..
|
|
|
|
#
|
|
# Directories that needs to be built.
|
|
#
|
|
DIRS =
|
|
|
|
SAMPLES = fibonacci hello prime
|
|
|
|
all :: $(SAMPLES)
|
|
|
|
ifdef OPTIMIZE
|
|
%.bc : %.st
|
|
@$(ECHO) "Compiling and Optimizing $< to $*.bc"
|
|
$(VERB)stkrc -e -o - $< | opt -stats -q -f -o $*.bc \
|
|
-aa-eval -adce -branch-combine -cee -constmerge -constprop -dce -die -ds-aa \
|
|
-ds-opt -gcse -globaldce -indvars -inline -instcombine \
|
|
-ipconstprop -licm -loopsimplify -mem2reg -pre -sccp -simplifycfg \
|
|
-tailcallelim -verify
|
|
else
|
|
%.bc : %.st
|
|
@$(ECHO) "Compiling $< to $*.bc"
|
|
$(VERB)stkrc -e -f -o $*.bc $<
|
|
endif
|
|
|
|
%.s : %.bc
|
|
@$(ECHO) "Compiling $< to $*.s"
|
|
$(VERB)llc -f -o $*.s $<
|
|
|
|
% : %.s
|
|
@$(ECHO) "Compiling and Linking $< to $*"
|
|
$(VERB)gcc -g -L$(BUILD_OBJ_ROOT)/lib/Debug -lstkr_runtime -o $* $*.s
|
|
|
|
%.ll : %.bc
|
|
@$(ECHO) "Disassembling $< to $*.ll"
|
|
$(VERB)llvm-dis -f -o $*.ll $<
|
|
|
|
%.bc : $(BUILD_OBJ_ROOT)/tools/Debug/stkrc
|
|
|
|
.PRECIOUS: %.bc %.s %.ll %.st
|
|
|
|
SAMPLES_LL = $(SAMPLES:%=%.ll)
|
|
SAMPLES_BC = $(SAMPLES:%=%.bc)
|
|
SAMPLES_S = $(SAMPLES:%=%.s)
|
|
|
|
clean ::
|
|
$(VERB)rm -f gmon.out $(SAMPLES_LL) $(SAMPLES_BC) $(SAMPLES_S) $(SAMPLES)
|
|
#
|
|
# Include the Master Makefile that knows how to build all.
|
|
#
|
|
include $(LEVEL)/Makefile.common
|