From b3a6901e66f55b35aa9e01bcb24134e6a65ea004 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 26 Jun 2009 16:47:03 +0000 Subject: Initial import of compiler-rt. - git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@74292 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ppc/Makefile.mk | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/ppc/Makefile.mk (limited to 'lib/ppc/Makefile.mk') diff --git a/lib/ppc/Makefile.mk b/lib/ppc/Makefile.mk new file mode 100644 index 000000000..5d0f2b3df --- /dev/null +++ b/lib/ppc/Makefile.mk @@ -0,0 +1,22 @@ +#===- lib/ppc/Makefile.mk ----------------------------------*- Makefile -*--===# +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# + +Dir := lib/ppc +SubDirs := +OnlyArchs := ppc + +AsmSources := $(foreach file,$(wildcard $(Dir)/*.s),$(notdir $(file))) +Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) +ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.s=%.o) +Target := Optimized + +# FIXME: use automatic dependencies? +Dependencies := $(wildcard $(Dir)/*.h) + +include make/subdir.mk -- cgit v1.2.3