forked from GitHub/gf-core
41 lines
675 B
Makefile
41 lines
675 B
Makefile
lib_LTLIBRARIES = libpgf.la
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libpgf.pc
|
|
|
|
pgfincludedir=$(includedir)/pgf
|
|
pgfinclude_HEADERS = \
|
|
pgf/pgf.h
|
|
|
|
libpgf_la_SOURCES = \
|
|
pgf/db.cxx \
|
|
pgf/db.h \
|
|
pgf/ipc.cxx \
|
|
pgf/ipc.h \
|
|
pgf/text.cxx \
|
|
pgf/text.h \
|
|
pgf/pgf.cxx \
|
|
pgf/reader.cxx \
|
|
pgf/reader.h \
|
|
pgf/writer.cxx \
|
|
pgf/writer.h \
|
|
pgf/printer.cxx \
|
|
pgf/printer.h \
|
|
pgf/data.cxx \
|
|
pgf/data.h \
|
|
pgf/expr.cxx \
|
|
pgf/expr.h \
|
|
pgf/namespace.h
|
|
|
|
libpgf_la_LDFLAGS = -no-undefined
|
|
libpgf_la_LIBADD = -lrt
|
|
libpgf_la_CXXFLAGS = -fno-rtti
|
|
|
|
bin_PROGRAMS =
|
|
|
|
AUTOMAKE_OPTIONS = foreign subdir-objects dist-bzip2
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
libpgf.pc.in
|