mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-02 18:06:17 +00:00
First cut at the Makefile for llvm-config. This initial version just provides
the rule for building the LibDeps.txt file using GenLibDeps.pl. This needs to be done from time to time manually in order to keep LibDeps.txt up to date. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28097d086f
commit
0fab2b15ab
16
tools/llvm-config/Makefile
Normal file
16
tools/llvm-config/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
##===- utils/llvm-config/Makefile --------------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file was developed by Reid Spencer and Eric Kidd and is distributed under
|
||||
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../..
|
||||
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir)
|
||||
$(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt
|
16
utils/llvm-config/Makefile
Normal file
16
utils/llvm-config/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
##===- utils/llvm-config/Makefile --------------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file was developed by Reid Spencer and Eric Kidd and is distributed under
|
||||
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../..
|
||||
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir)
|
||||
$(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt
|
Loading…
x
Reference in New Issue
Block a user