20 lines
537 B
Makefile
20 lines
537 B
Makefile
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(includedir)
|
|
|
|
lib_LTLIBRARIES = libqsesed.la
|
|
libqsesed_la_SOURCES = sed.c err.c sed.h std.c
|
|
libqsesed_la_LDFLAGS = -L../cmn -L$(libdir) -version-info 1:0:0 -no-undefined
|
|
libqsesed_la_LIBADD = -lqsecmn
|
|
|
|
if ENABLE_CXX
|
|
lib_LTLIBRARIES += libqsesedxx.la
|
|
libqsesedxx_la_SOURCES = Sed.cpp StdSed.cpp
|
|
libqsesedxx_la_LDFLAGS = -L. -L../cmn -L$(libdir) -version-info 1:0:0 -no-undefined
|
|
libqsesedxx_la_LIBADD = -lqsesed -lqsecmn
|
|
endif
|
|
|