Patches for configure.ac and Makefile.am files in FG/SG so Mac developers can build these in a unix way. These also enables Mac developers to choose either PLIB framework or PLIB static libs.
32 lines
628 B
Makefile
32 lines
628 B
Makefile
includedir = @includedir@/props
|
|
|
|
lib_LIBRARIES = libsgprops.a
|
|
|
|
include_HEADERS = \
|
|
condition.hxx \
|
|
props.hxx \
|
|
props_io.hxx
|
|
|
|
libsgprops_a_SOURCES = \
|
|
condition.cxx \
|
|
props.cxx \
|
|
props_io.cxx
|
|
|
|
noinst_PROGRAMS = props_test
|
|
|
|
props_test_SOURCES = props_test.cxx
|
|
props_test_LDADD = \
|
|
libsgprops.a \
|
|
$(top_builddir)/simgear/xml/libsgxml.a \
|
|
$(top_builddir)/simgear/misc/libsgmisc.a \
|
|
$(top_builddir)/simgear/debug/libsgdebug.a \
|
|
$(top_builddir)/simgear/structure/libsgstructure.a
|
|
|
|
if HAVE_FRAMEWORK_OSG
|
|
props_test_LDFLAGS = $(openthreads_FRAMEWORK)
|
|
else
|
|
props_test_LDFLAGS = -lOpenThreads
|
|
endif
|
|
|
|
INCLUDES = -I$(top_srcdir)
|