44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(includedir)
|
|
|
|
lib_LTLIBRARIES = libqsecmn.la
|
|
libqsecmn_la_SOURCES = \
|
|
syscall.h mem.h \
|
|
mem.c xma.c fma.c pma.c chr.c chr_cnv.c rex.c \
|
|
str_beg.c str_cat.c str_chr.c str_cnv.c str_cmp.c str_cpy.c \
|
|
str_del.c str_dup.c str_dynm.c str_dynw.c str_end.c str_excl.c \
|
|
str_fcpy.c str_incl.c str_len.c str_pac.c str_pbrk.c str_put.c \
|
|
str_rev.c str_rot.c str_set.c str_spl.c str_spn.c str_str.c \
|
|
str_subst.c str_tok.c str_trm.c str_word.c \
|
|
lda.c oht.c htb.c rbt.c sll.c gdl.c dll.c opt.c \
|
|
tio.c tio_get.c tio_put.c \
|
|
fio.c pio.c sio.c \
|
|
alg_search.c \
|
|
alg_sort.c \
|
|
env.c \
|
|
time.c \
|
|
misc.c \
|
|
assert.c \
|
|
main.c \
|
|
stdio.c
|
|
libqsecmn_la_LDFLAGS = -L$(libdir) -version-info 1:0:0 -no-undefined
|
|
|
|
if WIN32
|
|
libqsecmn_la_LIBADD = -lpsapi
|
|
endif
|
|
|
|
if ENABLE_CXX
|
|
|
|
lib_LTLIBRARIES += libqsecmnxx.la
|
|
libqsecmnxx_la_SOURCES = \
|
|
Mmgr.cpp StdMmgr.cpp
|
|
libqsecmnxx_la_LDFLAGS = -L$(libdir) -version-info 1:0:0 -no-undefined
|
|
|
|
endif
|
|
|
|
|