Makefile.mk revision 01f9de572f21908fa63856cf294523f2ac1f1965
1#===- lib/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
10Dir := lib
11SubDirs := i386 ppc x86_64 arm
12
13Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
14ObjNames := $(Sources:%.c=%.o)
15Target := Generic
16
17# FIXME: use automatic dependencies?
18Dependencies := $(wildcard $(Dir)/*.h)
19
20include make/subdir.mk
21