This commit is contained in:
parent
b42c061760
commit
7337ab6725
5 changed files with 33 additions and 5 deletions
|
@ -16,14 +16,16 @@ dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
dnl
|
||||
|
||||
## Autoconf requirements
|
||||
AC_INIT([eyd], [0.1], [glenux@fr.st])
|
||||
|
||||
|
||||
AC_INIT([eyd], [0.2], [glenux@fr.st])
|
||||
AC_PREREQ(2.50)
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
AC_CANONICAL_TARGET
|
||||
|
||||
|
||||
AM_INIT_AUTOMAKE([eyd],[0.1])
|
||||
AM_INIT_AUTOMAKE([eyd],[0.2])
|
||||
|
||||
#AC_CANONICAL_SYSTEM
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
||||
# by quotes) that should identify the project.
|
||||
|
||||
PROJECT_NAME = EnlargeYourData
|
||||
PROJECT_NAME = MiniFTPc
|
||||
|
||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
||||
# This could be handy for archiving the generated documentation or
|
||||
|
|
|
@ -12,6 +12,19 @@ libeyd_la_SOURCES = eyd_bitreader.cpp \
|
|||
eyd_compressor_rle2.cpp \
|
||||
eyd_uncompressor_rle2.cpp
|
||||
|
||||
libeyd_la_SOURCES += \
|
||||
eyd_bitgroup.hh \
|
||||
eyd_bitreader.hh \
|
||||
eyd_bitwriter.hh \
|
||||
eyd_compressor_rle1.hh \
|
||||
eyd_compressor_rle2.hh \
|
||||
eyd_global.hh \
|
||||
eyd.hh \
|
||||
eyd_iface.hh \
|
||||
eyd_proto.hh \
|
||||
eyd_uncompressor_rle1.hh \
|
||||
eyd_uncompressor_rle2.hh
|
||||
|
||||
libeyd_la_CFLAGS = -DTRACE
|
||||
#-static
|
||||
libeyd_la_LDFLAGS = -version-info 3:12:1
|
||||
|
@ -24,3 +37,4 @@ libeyd_la_LDFLAGS = -version-info 3:12:1
|
|||
|
||||
#SQLITE3_LIBS@ LIBPCRE_LIBS@
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,13 @@ INCLUDES= -I../lib/ -I./ @GLIB2_CFLAGS@ @TARGET_READLINE_INC@
|
|||
#eyd_INCLUDE =
|
||||
|
||||
|
||||
eydrle_SOURCES = eydrle.cpp eydrle_init.cpp eydrle_main.cpp eydrle_compress.cpp eydrle_uncompress.cpp
|
||||
eydrle_SOURCES = \
|
||||
eydrle.cpp \
|
||||
eydrle_init.cpp \
|
||||
eydrle_main.cpp \
|
||||
eydrle_compress.cpp \
|
||||
eydrle_uncompress.cpp
|
||||
|
||||
eydrle_SOURCES += eydrle.hh
|
||||
eydrle_LDADD = -leyd
|
||||
eydrle_LDFLAGS = @LDFLAGS@ -L../lib -L../lib/.libs
|
||||
|
|
|
@ -18,7 +18,13 @@ INCLUDES= -I../lib/ -I./ @GLIB2_CFLAGS@ @TARGET_READLINE_INC@
|
|||
#eyd_INCLUDE =
|
||||
|
||||
|
||||
eydrle2_SOURCES = eydrle2.cpp eydrle2_init.cpp eydrle2_main.cpp eydrle2_compress.cpp eydrle2_uncompress.cpp
|
||||
eydrle2_SOURCES = \
|
||||
eydrle2.cpp \
|
||||
eydrle2_init.cpp \
|
||||
eydrle2_main.cpp \
|
||||
eydrle2_compress.cpp \
|
||||
eydrle2_uncompress.cpp
|
||||
|
||||
eydrle2_SOURCES += eydrle2.hh
|
||||
eydrle2_LDADD = -leyd
|
||||
eydrle2_LDFLAGS = @LDFLAGS@ -L../lib -L../lib/.libs
|
||||
|
|
Loading…
Reference in a new issue