16 lines
462 B
Makefile
16 lines
462 B
Makefile
|
|
AM_CPPFLAGS = -I$(top_builddir)/include
|
|
|
|
lib_LTLIBRARIES = libqsesed.la
|
|
libqsesed_la_SOURCES = sed.c err.c sed.h
|
|
libqsesed_la_LDFLAGS = -version-info 1:0:0 -no-undefined -L../cmn -L../utl
|
|
libqsesed_la_LIBADD = -lqsecmn -lqseutl
|
|
|
|
if ENABLE_CXX
|
|
lib_LTLIBRARIES += libqsesed++.la
|
|
libqsesed___la_SOURCES = Sed.cpp StdSed.cpp
|
|
libqsesed___la_LDFLAGS = -L. -L../cmn -L../utl -version-info 1:0:0 -no-undefined
|
|
libqsesed___la_LIBADD = -lqsesed -lqsecmn -lqseutl
|
|
endif
|
|
|