hanchenye-llvm-project/llvm/tools/Makefile

22 lines
748 B
Makefile
Raw Normal View History

2004-01-05 13:28:15 +08:00
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file was developed by the LLVM research group and is distributed under
# the University of Illinois Open Source License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
2004-01-05 13:28:15 +08:00
LEVEL := ..
2004-08-30 03:27:34 +08:00
PARALLEL_DIRS := llvmc llvm-as llvm-dis opt gccas llc llvm-link lli gccld \
llvm-stub analyze extract bugpoint llvm-nm llvm-prof llvm-db \
llvm-ar llvm-bcanalyzer llee
2001-06-07 04:29:01 +08:00
include $(LEVEL)/Makefile.config
ifeq ($(ARCH), Sparc)
PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
endif
2001-06-07 04:29:01 +08:00
include $(LEVEL)/Makefile.common