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
|
2019-06-30 05:00:30 +00:00
|
|
|
libqsesed_la_DEPENDENCIES = ../../lib/cmn/libqsecmn.la ../../lib/si/libqsesi.la
|
2009-05-20 23:25:28 +00:00
|
|
|
|
|
|
|
if ENABLE_CXX
|
2020-08-06 11:42:39 +00:00
|
|
|
libqsesed_la_SOURCES += Sed.cpp StdSed.cpp
|
2009-05-20 23:25:28 +00:00
|
|
|
endif
|
|
|
|
|