2002-03-08 23:20:52 +00:00
|
|
|
# test/Libraries/Makefile.libs
|
|
|
|
#
|
|
|
|
# This makefile should be used by subdirectories, which are libraries that are
|
|
|
|
# to be compiled to llvm bytecode and linked together with a specified name.
|
|
|
|
#
|
|
|
|
# Variables to be defined before including this makefile:
|
|
|
|
#
|
|
|
|
# 1. LEVEL - Must be set as per normal semantics: The depth from the top of tree
|
|
|
|
# 2. LIBNAME - Name of library to link together. Forms lib<LIBNAME>.bc
|
|
|
|
#
|
|
|
|
|
|
|
|
DESTLIBDIR := $(LEVEL)/test/Libraries/Output
|
|
|
|
DESTLIBNAME := $(LEVEL)/test/Libraries/Output/lib$(LIBNAME).bc
|
|
|
|
|
|
|
|
all:: $(DESTLIBNAME)
|
|
|
|
|
|
|
|
include $(LEVEL)/test/Makefile.tests
|
|
|
|
|
|
|
|
# Figure out what object files we want to build...
|
|
|
|
LObjs := $(sort $(addsuffix .bc, $(basename $(Source))))
|
|
|
|
LObjects := $(addprefix Output/,$(LObjs))
|
|
|
|
|
|
|
|
.PRECIOUS: $(LObjects)
|
|
|
|
|
|
|
|
# Link the library, then perform postlink optimization...
|
|
|
|
$(DESTLIBNAME): $(DESTLIBDIR)/.dir $(LObjects)
|
2002-05-20 21:45:44 +00:00
|
|
|
$(LLINK) -f $(LObjects) $(LDFLAGS) | \
|
2002-07-30 00:53:26 +00:00
|
|
|
$(LOPT) -f -deadtypeelim -raise -constprop -dce -o $@
|
2002-03-08 23:20:52 +00:00
|
|
|
|
|
|
|
# Install target for libraries: Copy into the gcc install directory in chris's
|
|
|
|
# tree...
|
|
|
|
#
|
2002-11-08 21:29:22 +00:00
|
|
|
INSTALL_DIR := /home/vadve/lattner/cvs/gcc_install_x86/llvm/lib/
|
2002-03-08 23:20:52 +00:00
|
|
|
|
|
|
|
install:: $(DESTLIBNAME)
|
2002-07-30 00:53:26 +00:00
|
|
|
cp $(DESTLIBNAME) $(INSTALL_DIR)
|