2009-06-27 00:47:03 +08:00
|
|
|
#===- lib/x86_64/Makefile.mk -------------------------------*- Makefile -*--===#
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
|
|
|
|
SubDirs :=
|
|
|
|
OnlyArchs := x86_64
|
|
|
|
|
2009-09-11 07:27:45 +08:00
|
|
|
AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file)))
|
2009-06-27 00:47:03 +08:00
|
|
|
Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
|
2009-09-11 07:27:45 +08:00
|
|
|
ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
|
2010-01-18 14:49:09 +08:00
|
|
|
Implementation := Optimized
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
# FIXME: use automatic dependencies?
|
2009-10-28 01:49:50 +08:00
|
|
|
Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|