mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
b195d9d365
1. Check for Perl and only build llvm-config if its available. 2. Add some virtual components 3. Don't depend on "standard" location for Perl, but configured location 4. Document the tool with a POD file. This version is now ready for testing by users. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27005 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
832 B
Makefile
24 lines
832 B
Makefile
##===- utils/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.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ..
|
|
DIRS = Burg TableGen fpcmp
|
|
|
|
EXTRA_DIST = check-each-file codegen-diff countloc.sh cvsupdate emacs \
|
|
getsrcs.sh llvmdo llvmgrep llvm-native-gcc llvm-native-gxx \
|
|
makellvm NightlyTest.gnuplot NightlyTest.pl \
|
|
NightlyTestTemplate.html profile.pl RegressionFinder.pl vim
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
# Only include llvm-config if we have Perl to build it with.
|
|
ifeq ($(HAVE_PERL),1)
|
|
DIRS += llvm-config
|
|
endif
|