• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## -*-makefile-*-
2## HP/UX-specific setup using aCC
3## Copyright (c) 1999-2009, International Business Machines Corporation and
4## others. All Rights Reserved.
5
6## Commands to generate dependency files
7GEN_DEPS.c=	:
8GEN_DEPS.cc= 	:
9
10## Flags for position independent code
11SHAREDLIBCFLAGS = +Z
12SHAREDLIBCXXFLAGS = +Z
13
14## Additional flags when building libraries with threads
15## We use this instead of -mt, which isn't available in all versions of aCC
16## Our tools won't compile with -D_POSIX_C_SOURCE=199506L
17THREADSCPPFLAGS = -D_REENTRANT -D_THREAD_SAFE
18
19# Use Extended ANSI mode, which is useful for 64-bit numbers
20# +W ignores some warnings
21#    740 Unsafe cast between pointers/references to incomplete classes...
22#    749 This operation is non-portable and potentially unsafe.
23#        (Ironically the solution to fix this warning is non-portable)
24#    823 Redundant preprocessing concatenation operation results in two valid
25#        preprocessing tokens. This comes from INT64_C in <inttypes.h>
26#   4232 conversion to a more strictly aligned type may cause misaligned access.
27CFLAGS += -Ae +Olit=all
28CXXFLAGS += -Wc,-ansi_for_scope,on +W740 +W749 +W823 +W4232
29
30ifeq ($(UCLN_NO_AUTO_CLEANUP),0)
31# set up init point.
32UCLN_FINI =  ucln_fini$(TARGET_STUBNAME)_$(SO_TARGET_VERSION_MAJOR)$(ICULIBSUFFIXCNAME)
33CPPFLAGS_FINI = -DUCLN_FINI=$(UCLN_FINI)
34LDFLAGS_FINI = -Wl,+fini,$(UCLN_FINI)
35
36CPPFLAGSICUUC += $(CPPFLAGS_FINI)
37LDFLAGSICUUC += $(LDFLAGS_FINI)
38CPPFLAGSICUIO += $(CPPFLAGS_FINI)
39LDFLAGSICUIO += $(LDFLAGS_FINI)
40CPPFLAGSICUI18N += $(CPPFLAGS_FINI)
41LDFLAGSICUI18N += $(LDFLAGS_FINI)
42CPPFLAGSCTESTFW += $(CPPFLAGS_FINI)
43LDFLAGSCTESTFW += $(LDFLAGS_FINI)
44
45# ICUUC, ICUIO, ICUI18N, CTESTFW
46endif
47
48# -Bhidden_def Hides all symbols defined in the module.
49#LIBCFLAGS = -Bhidden_def
50#LIBCXXFLAGS = -Bhidden_def
51
52## Commands to compile
53COMPILE.c=	$(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -c
54COMPILE.cc=	$(CXX) $(DEFS) $(CPPFLAGS) $(CXXFLAGS) -c
55
56## Common 'default' path to ensure the sanity of users.  Search the current
57## directory, at least.
58LD_DEFAULTPATH= -Wl,+b,'$$'ORIGIN/
59
60# Use SHLIB_PATH and LD_LIBRARY_PATH to locate shared libraries
61LDFLAGS += -Wl,+s $(LD_DEFAULTPATH)
62
63## Commands to link
64## For aCC, use the C++ linker so that __shlinit gets defined
65LINK.c=		$(CXX) $(CXXFLAGS) $(LDFLAGS)
66LINK.cc=	$(CXX) $(CXXFLAGS) $(LDFLAGS)
67
68## Shared library options
69LD_SOOPTIONS= -Bprotected_def
70
71## Commands to make a shared library
72#SHLIB.c=	$(LD) $(LDFLAGS) -b
73SHLIB.c=	$(CXX) $(CXXFLAGS) $(LDFLAGS) -b $(LD_SOOPTIONS)
74SHLIB.cc=	$(CXX) $(CXXFLAGS) $(LDFLAGS) -b $(LD_SOOPTIONS)
75
76## Compiler switch to embed a runtime search path
77LD_RPATH=	-Wl,+b,
78LD_RPATH_PRE=
79
80## Environment variable to set a runtime search path
81LDLIBRARYPATH_ENVVAR = SHLIB_PATH
82
83## Compiler switch to embed a library name
84LD_SONAME = -Wl,+h,$(notdir $(MIDDLE_SO_TARGET))
85
86## The type of assembly needed when pkgdata is used for generating shared libraries.
87# Commented out for now because the hp1 test machine runs out of memory.
88#GENCCODE_ASSEMBLY=-a aCC-parisc
89
90## Shared object suffix
91SO=		sl
92## Non-shared intermediate object suffix
93STATIC_O = o
94
95## Compilation rules
96%.$(STATIC_O): $(srcdir)/%.c
97	$(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) -o $@ $<
98%.o: $(srcdir)/%.c
99	$(COMPILE.c) $(DYNAMICCPPFLAGS) $(DYNAMICCFLAGS) -o $@ $<
100
101%.$(STATIC_O): $(srcdir)/%.cpp
102	$(COMPILE.cc) $(STATICCPPFLAGS) $(STATICCXXFLAGS) -o $@ $<
103%.o: $(srcdir)/%.cpp
104	$(COMPILE.cc) $(DYNAMICCPPFLAGS) $(DYNAMICCXXFLAGS) -o $@ $<
105
106
107## Dependency rules
108%.d : $(srcdir)/%.c
109	@echo "generating dependency information for $<"
110	@$(GEN_DEPS.c) $< > $@
111
112%.d : $(srcdir)/%.cpp
113	@echo "generating dependency information for $<"
114	@$(GEN_DEPS.cc) $< > $@
115
116## Versioned libraries rules
117
118%.$(SO).$(SO_TARGET_VERSION_MAJOR): %.$(SO).$(SO_TARGET_VERSION)
119	$(RM) $@ && ln -s ${<F} $@
120%.$(SO): %.$(SO).$(SO_TARGET_VERSION_MAJOR)
121	$(RM) $@ && ln -s ${*F}.$(SO).$(SO_TARGET_VERSION) $@
122
123## Install libraries as executable
124INSTALL-L=$(INSTALL_PROGRAM)
125
126## Remove shared library 's'
127STATIC_PREFIX_WHEN_USED =
128STATIC_PREFIX =
129
130## End HP/UX-specific setup
131