mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00:00
151f8ba364
* "dist" target now builds tar.gz, tar.bz2, and zip files suitable for distribution. "dist" can only be run from $(BUILD_OBJ_ROOT) and implies a "check". * made the preconditions not do a recursive make and ensured that they are executed sequentially. * made the messages output by the makefile be prefixed with "llvm" and the make level (e.g. llvm[1]: ) in the same way that make does so that the messages are uniform and more readable. * Fixed the tags target so that tags depends on TAGS which contains the rules to build a file named TAGS * Implemented the EXTRA_DIST feature in a few directories to make sure it works. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17210 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
721 B
Makefile
20 lines
721 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
|
|
|