mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
d6bae0ca62
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. llvm-svn: 26875
17 lines
555 B
Makefile
17 lines
555 B
Makefile
##===- 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
|