2009-12-22 06:29:52 +00:00
|
|
|
AUTOMAKE_OPTIONS = nostdinc
|
2009-05-19 22:28:25 +00:00
|
|
|
|
2011-01-23 04:32:11 +00:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/include \
|
2013-02-26 18:31:38 +00:00
|
|
|
-I$(top_srcdir)/include
|
2009-05-19 22:28:25 +00:00
|
|
|
|
2016-04-29 03:55:42 +00:00
|
|
|
noinst_HEADERS = sed-prv.h
|
|
|
|
|
2009-05-19 22:28:25 +00:00
|
|
|
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
|
2009-09-05 07:08:19 +00:00
|
|
|
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
|
|
|
|
|