qse/qse/lib/sed/Makefile.am

21 lines
556 B
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS = nostdinc
2011-01-23 04:32:11 +00:00
AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include
2016-04-29 03:55:42 +00:00
noinst_HEADERS = sed-prv.h
lib_LTLIBRARIES = libqsesed.la
2016-04-29 03:55:42 +00:00
libqsesed_la_SOURCES = sed.c err.c std.c
libqsesed_la_LDFLAGS = -L../cmn -L../si -version-info 1:0:0 -no-undefined
libqsesed_la_LIBADD = -lqsecmn -lqsesi
2009-05-20 23:25:28 +00:00
if ENABLE_CXX
lib_LTLIBRARIES += libqsesedxx.la
libqsesedxx_la_SOURCES = Sed.cpp StdSed.cpp
2016-04-29 03:55:42 +00:00
libqsesedxx_la_LDFLAGS = -L. -L../cmn -L../si -version-info 1:0:0 -no-undefined
libqsesedxx_la_LIBADD = -lqsesed -lqsecmnxx -lqsesi -lqsecmn
2009-05-20 23:25:28 +00:00
endif