[llvm-commits] CVS: llvm/lib/Analysis/IPA/Makefile.am
Reid Spencer
reid at x10sys.com
Sun Oct 10 15:17:49 PDT 2004
Changes in directory llvm/lib/Analysis/IPA:
Makefile.am updated: 1.1 -> 1.2
---
Log message:
Build both archive and relinked objects
---
Diffs of the changes: (+5 -1)
Index: llvm/lib/Analysis/IPA/Makefile.am
diff -u llvm/lib/Analysis/IPA/Makefile.am:1.1 llvm/lib/Analysis/IPA/Makefile.am:1.2
--- llvm/lib/Analysis/IPA/Makefile.am:1.1 Sun Oct 10 15:39:18 2004
+++ llvm/lib/Analysis/IPA/Makefile.am Sun Oct 10 17:17:39 2004
@@ -10,8 +10,9 @@
include $(top_srcdir)/Makefile.rules.am
lib_LIBRARIES = libLLVMIPA.a
+libexec_PROGRAMS = LLVMIPA.o
-libLLVMIPA_a_SOURCES = \
+MYSOURCES = \
Andersens.cpp \
CallGraph.cpp \
CallGraphSCCPass.cpp \
@@ -19,3 +20,6 @@
FindUsedTypes.cpp \
GlobalsModRef.cpp \
PrintSCC.cpp
+libLLVMIPA_a_SOURCES = $(MYSOURCES)
+LLVMIPA_o_SOURCES = $(MYSOURCES)
+LIBS=
More information about the llvm-commits
mailing list