mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
49 lines
866 B
Makefile
49 lines
866 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/text.cxx \
|
|
pgf/text.h \
|
|
pgf/vector.cxx \
|
|
pgf/vector.h \
|
|
pgf/heap.h \
|
|
pgf/pgf.cxx \
|
|
pgf/reader.cxx \
|
|
pgf/reader.h \
|
|
pgf/writer.cxx \
|
|
pgf/writer.h \
|
|
pgf/printer.cxx \
|
|
pgf/printer.h \
|
|
pgf/typechecker.cxx \
|
|
pgf/typechecker.h \
|
|
pgf/linearizer.cxx \
|
|
pgf/linearizer.h \
|
|
pgf/graphviz.cxx \
|
|
pgf/graphviz.h \
|
|
pgf/data.cxx \
|
|
pgf/data.h \
|
|
pgf/expr.cxx \
|
|
pgf/expr.h \
|
|
pgf/namespace.h \
|
|
pgf/phrasetable.cxx \
|
|
pgf/phrasetable.h
|
|
|
|
libpgf_la_LDFLAGS = -no-undefined
|
|
libpgf_la_CXXFLAGS = -fno-rtti -std=c++11 -DCOMPILING_PGF
|
|
|
|
bin_PROGRAMS =
|
|
|
|
AUTOMAKE_OPTIONS = foreign subdir-objects dist-bzip2
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
libpgf.pc.in
|