2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html
4 ## haiku-specific setup
5 ## Copyright (c) 2010-2012, International Business Machines Corporation and
6 ## others. All Rights Reserved.
9 ## Commands to generate dependency files
10 GEN_DEPS.c= $(CC) -E -MM $(DEFS) $(CPPFLAGS)
11 GEN_DEPS.cc= $(CXX) -E -MM $(DEFS) $(CPPFLAGS)
13 ## Flags for position independent code
14 SHAREDLIBCFLAGS = -fPIC
15 SHAREDLIBCXXFLAGS = -fPIC
16 SHAREDLIBCPPFLAGS = -DPIC
18 ## Additional flags when building libraries and with threads
23 CPPFLAGS += -D__STDC_ISO_10646__ -DU_CHARSET_IS_UTF8=1
25 ## Compiler switch to embed a runtime search path
27 LD_RPATH_PRE = -Wl,-rpath,
29 ## Compiler switch to embed a library name
30 LD_SONAME = -Wl,-soname -Wl,$(notdir $(MIDDLE_SO_TARGET))
32 ## Shared object suffix
34 ## Non-shared intermediate object suffix
38 %.$(STATIC_O): $(srcdir)/%.c
39 $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) -o $@ $<
41 $(COMPILE.c) $(DYNAMICCPPFLAGS) $(DYNAMICCFLAGS) -o $@ $<
43 %.$(STATIC_O): $(srcdir)/%.cpp
44 $(COMPILE.cc) $(STATICCPPFLAGS) $(STATICCXXFLAGS) -o $@ $<
46 $(COMPILE.cc) $(DYNAMICCPPFLAGS) $(DYNAMICCXXFLAGS) -o $@ $<
51 @echo "generating dependency information for $<"
52 @$(SHELL) -ec '$(GEN_DEPS.c) $< \
53 | sed '\''s%\($*\)\.o[ :]*%\1.o $@ : %g'\'' > $@; \
54 [ -s $@ ] || rm -f $@'
57 @echo "generating dependency information for $<"
58 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
59 | sed '\''s%\($*\)\.o[ :]*%\1.o $@ : %g'\'' > $@; \
60 [ -s $@ ] || rm -f $@'
62 ## Versioned libraries rules
64 %.$(SO).$(SO_TARGET_VERSION_MAJOR): %.$(SO).$(SO_TARGET_VERSION)
65 $(RM) $@ && ln -s ${<F} $@
66 %.$(SO): %.$(SO).$(SO_TARGET_VERSION_MAJOR)
67 $(RM) $@ && ln -s ${*F}.$(SO).$(SO_TARGET_VERSION) $@
69 ## Bind internal references
71 # LDflags that pkgdata will use
72 BIR_LDFLAGS= -Wl,-Bsymbolic
74 # Dependencies [i.e. map files] for the final library
77 # Use LIBRARY_PATH instead of LD_LIBRARY_PATH
78 LDLIBRARYPATH_ENVVAR= LIBRARY_PATH
80 ## End haiku-specific setup