Browse CVS Repository
Contents of /xoonips/AL/Makefile.am
Parent Directory
| Revision Log
| Revision Graph
Revision 1.4 -
( show annotations)
( download)
Sat Dec 10 11:55:02 2005 UTC
(18 years, 3 months ago)
by orrisroot
Branch: MAIN
CVS Tags: AL_PORTING, REL20051226, REL20060323, tag20060615, tag20070307current, tag20061115, tag20061130, merge_to_20060605, tag20070307, REL20060213, RELENG_2_0_0a_RELEASE, tag20060622, merge_to_20060411, HEAD
Branch point for: XOONIPS_STABLE_32, XOONIPS_STABLE_3, XOONIPS_STABLE_2
Changes since 1.3: +7 -3 lines
- updated autotools versions.
autoconf -> 2.59
automake -> 1.9.6
libtool -> 1.5.20
- fixed help messages and indents for './configure --help'.
- fixed extra files list for 'make dist'
- added COPYING file
| 1 |
AUTOMAKE_OPTIONS = 1.9 |
| 2 |
|
| 3 |
# make abstract layer only |
| 4 |
# CFLAGS = @CFLAGS@ $(XNPAL_CFLAGS) |
| 5 |
# CXXFLAGS = @CXXFLAGS@ $(XNPAL_CFLAGS) |
| 6 |
# bin_SCRIPTS = xnpal-config |
| 7 |
# lib_LTLIBRARIES = libxnpal.la XNPAL.la |
| 8 |
# libxnpal_la_SOURCES = $(libxnpal_sources) |
| 9 |
# libxnpal_la_LIBADD = $(XNPAL_LIBADD) |
| 10 |
|
| 11 |
# make abstract layer with php wrapper |
| 12 |
DEFS=@DEFS@ -DCOMPILE_DL_FIRST_MODULE=1 |
| 13 |
CFLAGS = @CFLAGS@ $(XNPAL_CFLAGS) $(PHP_INCLUDES) |
| 14 |
CXXFLAGS = @CXXFLAGS@ $(XNPAL_CFLAGS) $(PHP_INCLUDES) |
| 15 |
libdir = $(PHP_EXTENSION_DIR) |
| 16 |
lib_LTLIBRARIES = XNPAL.la |
| 17 |
XNPAL_la_SOURCES = $(libxnpal_sources) $(xnpal_sources) |
| 18 |
XNPAL_la_LIBADD = $(XNPAL_LIBADD) $(PHP_LIBS) |
| 19 |
XNPAL_la_LDFLAGS = $(LDFLAGS) $(PHP_LDFLAGS) -no-undefined -module -avoid-version |
| 20 |
|
| 21 |
libxnpal_sources = \ |
| 22 |
account.h \ |
| 23 |
account.cc \ |
| 24 |
common.h \ |
| 25 |
common.cc \ |
| 26 |
commonal.h \ |
| 27 |
commonal.cc \ |
| 28 |
criteria.h \ |
| 29 |
criteria.cc \ |
| 30 |
group.h \ |
| 31 |
group.cc \ |
| 32 |
session.h \ |
| 33 |
session.cc \ |
| 34 |
item.h \ |
| 35 |
item.cc \ |
| 36 |
itemtype.h \ |
| 37 |
itemtype.cc \ |
| 38 |
index.h \ |
| 39 |
index.cc \ |
| 40 |
changelog.h \ |
| 41 |
changelog.cc \ |
| 42 |
pubmed.h \ |
| 43 |
pubmed.cc \ |
| 44 |
amazonbook.h \ |
| 45 |
amazonbook.cc \ |
| 46 |
ioapi.h \ |
| 47 |
ioapi.c \ |
| 48 |
crypt.h \ |
| 49 |
zip.h \ |
| 50 |
minizip.c \ |
| 51 |
zip.c \ |
| 52 |
event.h \ |
| 53 |
event.cc |
| 54 |
|
| 55 |
xnpal_sources = \ |
| 56 |
xnpal.cc \ |
| 57 |
xnpal.h |
| 58 |
|
| 59 |
EXTRA_DIST = \ |
| 60 |
bootstrap.sh \ |
| 61 |
Makefile.w32 \ |
| 62 |
xnpal.doxygen \ |
| 63 |
iowin32.c \ |
| 64 |
iowin32.h \ |
| 65 |
md5/global.h \ |
| 66 |
md5/md5.c \ |
| 67 |
md5/md5.h \ |
| 68 |
macros/libiodbc.m4 \ |
| 69 |
macros/libtool.m4 \ |
| 70 |
macros/libxml-hook.m4 \ |
| 71 |
macros/libxml.m4 \ |
| 72 |
macros/openssl.m4 \ |
| 73 |
macros/php.m4 \ |
| 74 |
macros/unixodbc.m4 \ |
| 75 |
macros/zlib.m4 \ |
| 76 |
sotest.php \ |
| 77 |
test/Makefile \ |
| 78 |
test/common.cc \ |
| 79 |
test/common.h \ |
| 80 |
test/commonal_cppunit.cc \ |
| 81 |
test/commonal_cppunit.sql \ |
| 82 |
test/commonal_cppunit.sqlite \ |
| 83 |
test/droptable.sql \ |
| 84 |
test/stresstest.php \ |
| 85 |
test/stresstest.sql \ |
| 86 |
test/test_account.cc \ |
| 87 |
test/test_commonal.cc \ |
| 88 |
test/test_criteria.cc \ |
| 89 |
test/test_group.cc \ |
| 90 |
test/test_login_logout.cc \ |
| 91 |
test/test_session.cc \ |
| 92 |
test/bsb4/BUILD.txt \ |
| 93 |
test/bsb4/altest.bpr \ |
| 94 |
test/bsb4/altest.cpp \ |
| 95 |
testphp/commonal.php \ |
| 96 |
testphp/commonal_initdb.php \ |
| 97 |
testphp/load_xnpal.php \ |
| 98 |
testphp/login_user.php |
| 99 |
|
| 100 |
CLEANFILES = *~ |
| 101 |
DISTCLEANFILES = .deps/*.P |
| |