3
0
Fork 0

progress on alternate makefile. added zimlib

small_fixes
reg_ 14 years ago
parent 6763a68667
commit 901a0fbfb3

@ -1,14 +1,11 @@
SUBDIRS = dependencies #\
#zimlib \
#ctpp2 \
#pugixml \
#components
#SUBDIRS = dependencies zimlib ctpp2 pugixml components
SUBDIRS = zimlib
if WITH_MANAGER
SUBDIRS += manager
endif
if (IS_POSIX && WITH_SERVER)
if WITH_SERVER
SUBDIRS += server
endif

@ -0,0 +1,2 @@
SUBDIRS=src
EXTRA_DIST=include

@ -0,0 +1,35 @@
AM_CPPFLAGS=-I$(top_srcdir)/src/zimlib/include
noinst_LTLIBRARIES = libzim.la
libzim_la_SOURCES = \
article.cpp \
articlesearch.cpp \
cluster.cpp \
dirent.cpp \
file.cpp \
fileheader.cpp \
fileimpl.cpp \
indexarticle.cpp \
ptrstream.cpp \
search.cpp \
template.cpp \
unicode.cpp \
uuid.cpp \
zintstream.cpp \
envvalue.cpp \
lzmastream.cpp \
unlzmastream.cpp \
fstream.cpp \
md5.cpp \
md5stream.cpp \
ptrstream.h \
log.h \
envvalue.h \
md5stream.h \
md5.h
libzim_la_CXXFLAGS=${LZMA_CFLAGS} -fPIC -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
libzim_la_LDFLAGS=${LZMA_LDFLAGS}
CLEANFILES=*.obj *.lib *.dll
Loading…
Cancel
Save