Makefile.mk revision 77ed6142daed1e068fbda64405d0de9845e40e1
1#===- lib/i386/Makefile.mk ---------------------------------*- Makefile -*--===# 2# 3# The LLVM Compiler Infrastructure 4# 5# This file is distributed under the University of Illinois Open Source 6# License. See LICENSE.TXT for details. 7# 8#===------------------------------------------------------------------------===# 9 10SubDirs := 11OnlyArchs := i386 12 13AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 14Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 15ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o) 16Implementation := Optimized 17 18# FIXME: use automatic dependencies? 19Dependencies := $(wildcard lib/*.h $(Dir)/*.h) 20