f441833597
X-SVN-Rev: 901
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
## -*-makefile-*-
|
|
## HP/UX-specific setup using CC
|
|
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
|
## others. All Rights Reserved.
|
|
|
|
|
|
## This causes source/tools/Makefile.in to create and link in a
|
|
## bogus C++ file, so that exception handling with +eh will be
|
|
## enabled properly.
|
|
HPUX_JUNK_OBJ= hpux_junk_obj.o
|
|
|
|
## Commands to generate dependency files
|
|
GEN_DEPS.c= :
|
|
GEN_DEPS.cc= :
|
|
|
|
## Commands to compile
|
|
COMPILE.c= $(CC) +z -Ae $(DEFS) $(CPPFLAGS) $(CFLAGS) -c
|
|
COMPILE.cc= $(CXX) +z +a1 $(DEFS) $(CPPFLAGS) $(CXXFLAGS) -c
|
|
|
|
## Commands to link
|
|
## We need to use the C++ linker, even when linking C programs, since
|
|
## our libraries contain C++ code (bug in linker?)
|
|
#LINK.c= $(CC) +z -Ae $(DEFS) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
|
|
LINK.c= $(CXX) +z +a1 $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
|
|
LINK.cc= $(CXX) +z +a1 $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
|
|
|
|
## Commands to make a shared library
|
|
#SHLIB.c= $(LD) $(LDFLAGS) -b
|
|
SHLIB.c= $(CXX) $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -b
|
|
SHLIB.cc= $(CXX) $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -b
|
|
|
|
## Compiler switch to embed a runtime search path
|
|
LD_RPATH= -Wl,+b,
|
|
LD_RPATH_PRE=
|
|
|
|
## Shared object suffix
|
|
SO= sl
|
|
|
|
## Link commands to link to ICU libs
|
|
LIBICU-UC= -L$(top_builddir)/common -licu-uc
|
|
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n
|
|
LIBCTESTFW= -L$(top_builddir)/tools/ctestfw -lctestfw
|
|
LIBICU-TOOLUTIL=-L$(top_builddir)/tools/toolutil -licu-toolutil
|
|
|
|
## Compilation rules
|
|
%.o : $(srcdir)/%.c
|
|
$(COMPILE.c) -o $@ $<
|
|
|
|
%.o : $(srcdir)/%.cpp
|
|
$(COMPILE.cc) -o $@ $<
|
|
|
|
../data/%.o : ../data/%.c
|
|
$(COMPILE.c) -o $@ $<
|
|
|
|
## Dependency rules
|
|
%.d : $(srcdir)/%.c
|
|
@echo "Generating dependency information for $<"
|
|
@$(GEN_DEPS.c) $< > $@
|
|
|
|
%.d : $(srcdir)/%.cpp
|
|
@echo "Generating dependency information for $<"
|
|
@$(GEN_DEPS.cc) $< > $@
|
|
|
|
## End HP/UX-specific setup
|