Changeset 1025
- Timestamp:
- 04/04/08 21:02:44 (8 months ago)
- Location:
- branches/alonbl/build
- Files:
-
- 17 modified
-
Makefile.am (modified) (1 diff)
-
aclocal/Makefile.am (modified) (1 diff)
-
aclocal/ac_create_stdint_h.m4 (modified) (2 diffs)
-
configure.ac (modified) (4 diffs)
-
doc/Makefile.am (modified) (3 diffs)
-
doc/doxygen.conf.in (modified) (3 diffs)
-
doc/nonpersistent/Makefile.am (modified) (3 diffs)
-
etc/Makefile.am (modified) (1 diff)
-
macos/Makefile.am (modified) (1 diff)
-
src/Makefile.am (modified) (1 diff)
-
src/ct/Makefile.am (modified) (2 diffs)
-
src/ctapi/Makefile.am (modified) (2 diffs)
-
src/ifd/Makefile.am (modified) (2 diffs)
-
src/include/Makefile.am (modified) (1 diff)
-
src/include/openct/Makefile.am (modified) (2 diffs)
-
src/pcsc/Makefile.am (modified) (2 diffs)
-
src/tools/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/alonbl/build/Makefile.am
r1019 r1025 3 3 4 4 MAINTAINERCLEANFILES = \ 5 Makefile.in config.h.in config.h.in~ configure \ 6 install-sh ltmain.sh missing mkinstalldirs \ 7 compile depcomp config.log config.status \ 8 config.guess config.sub acinclude.m4 aclocal.m4 \ 9 packaged 5 config.log config.status \ 6 $(srcdir)/Makefile.in \ 7 $(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \ 8 $(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \ 9 $(srcdir)/depcomp $(srcdir)/aclocal.m4 $(srcdir)/compile \ 10 $(srcdir)/config.guess $(srcdir)/config.sub \ 11 $(srcdir)/packaged 10 12 EXTRA_DIST = svnignore 11 13 -
branches/alonbl/build/aclocal/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 dist_noinst_DATA = ac_create_stdint_h.m4 \ -
branches/alonbl/build/aclocal/ac_create_stdint_h.m4
r1015 r1025 39 39 AC_DEFUN([AC_CREATE_STDINT_H], 40 40 [# ------ AC CREATE STDINT H ------------------------------------- 41 AC_PROG_MKDIR_P 42 AC_PROG_SED 41 43 AC_MSG_CHECKING([for stdint-types....]) 42 44 ac_stdint_h=`echo ifelse($1, , _stdint.h, $1)` … … 103 105 _ac_stdint_h=AS_TR_CPP(_$ac_stdint_h) 104 106 AC_MSG_RESULT(creating $ac_stdint_h : $_ac_stdint_h) 107 ${MKDIR_P} $(echo "${ac_stdint_h}" | ${SED} 's/[[^/]]*$//') 2> /dev/null 105 108 echo "#ifndef" $_ac_stdint_h >$ac_stdint_h 106 109 echo "#define" $_ac_stdint_h "1" >>$ac_stdint_h -
branches/alonbl/build/configure.ac
r1024 r1025 148 148 fi 149 149 ], 150 [bundledir=" no"]150 [bundledir=""] 151 151 ) 152 152 … … 161 161 fi 162 162 ], 163 [udevdir=" no"]163 [udevdir=""] 164 164 ) 165 165 … … 174 174 fi 175 175 ], 176 [hotplugdir=" no"]177 ) 178 179 AC_ARG_ ENABLE(176 [hotplugdir=""] 177 ) 178 179 AC_ARG_WITH( 180 180 [ifddir], 181 181 [AC_HELP_STRING([--with-ifddir], [ifd directory. @<:@/usr/lib/ifd@:>@])], … … 403 403 AM_CONDITIONAL([ENABLE_DOC], [test "${enable_doc}" = "yes"]) 404 404 AM_CONDITIONAL([ENABLE_API_DOC], [test "${enable_api_doc}" = "yes"]) 405 AM_CONDITIONAL([ENABLE_BUNDLES], [test "${bundledir}" != "no"])406 AM_CONDITIONAL([ENABLE_UDEV], [test "${udevdir}" != "no"])407 AM_CONDITIONAL([ENABLE_HOTPLUG], [test "${hotplugdir}" != "no"])405 AM_CONDITIONAL([ENABLE_BUNDLES], [test -n "${bundledir}"]) 406 AM_CONDITIONAL([ENABLE_UDEV], [test -n "${udevdir}"]) 407 AM_CONDITIONAL([ENABLE_HOTPLUG], [test -n "${hotplugdir}"]) 408 408 AM_CONDITIONAL([ENABLE_PCSC], [test "${enable_pcsc}" = "yes"]) 409 409 -
branches/alonbl/build/doc/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 if ENABLE_DOC … … 7 7 8 8 dist_doc_DATA = README 9 dist_noinst_DATA = doxygen-footer.html*.gif9 dist_noinst_DATA = $(srcdir)/doxygen-footer.html $(srcdir)/*.gif 10 10 11 11 if ENABLE_API_DOC … … 15 15 16 16 api.out/html/*: \ 17 ../src/include/openct/*.h \18 doxygen.conf \19 *.gif17 $(top_srcdir)/src/include/openct/*.h \ 18 $(srcdir)/*.gif \ 19 doxygen.conf 20 20 -rm -fr api.out 21 21 $(DOXYGEN) doxygen.conf 22 cp *.gif api.out/html22 cp "$(srcdir)"/*.gif api.out/html 23 23 24 24 endif -
branches/alonbl/build/doc/doxygen.conf.in
r1015 r1025 114 114 # path to strip. 115 115 116 STRIP_FROM_PATH = ../src/include116 STRIP_FROM_PATH = @top_srcdir@/src/include 117 117 118 118 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of … … 494 494 # with spaces. 495 495 496 INPUT = ../src/include496 INPUT = @top_srcdir@/src/include 497 497 498 498 # This tag can be used to specify the character encoding of the source files that … … 707 707 # standard footer. 708 708 709 HTML_FOOTER = doxygen-footer.html709 HTML_FOOTER = @srcdir@/doxygen-footer.html 710 710 711 711 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading -
branches/alonbl/build/doc/nonpersistent/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in ChangeLog ChangeLog.tmp 1 MAINTAINERCLEANFILES = \ 2 $(srcdir)/Makefile.in $(srcdir)/ChangeLog 3 DISTCLEANFILES = \ 4 ChangeLog ChangeLog.tmp 2 5 3 6 wikidir=$(htmldir)/wiki … … 14 17 WGET="$(WGET)" WGET_OPTS="$(WGET_OPTS)" SED="$(SED)" TR="$(TR)" XSLTPROC="$(XSLTPROC)" \ 15 18 PROJECT="@PACKAGE_NAME@" \ 16 $(SHELL) "$(srcdir)/export-wiki.sh" "$(srcdir)" " $(srcdir)/wiki.tmp"19 $(SHELL) "$(srcdir)/export-wiki.sh" "$(srcdir)" "wiki.tmp" 17 20 mv wiki.tmp wiki.out 18 21 19 22 ChangeLog: 20 23 test -n "$(SVN)" -a -n "$(XSLTPROC)" 21 if test -d .svn; then \24 if test -d "$(top_srcdir)/.svn"; then \ 22 25 $(SVN) --verbose --xml log "$(top_srcdir)" | \ 23 26 $(XSLTPROC) --nonet --stringparam linelen 75 \ … … 31 34 mv ChangeLog.tmp ChangeLog 32 35 36 else 37 38 wiki.out/*: 39 $(LN_S) "$(srcdir)/wiki.out" wiki.out 40 41 ChangeLog: 42 $(LN_S) "$(srcdir)/ChangeLog" ChangeLog 43 33 44 endif 34 45 46 distclean-local: 47 rm -rf wiki.out wiki.tmp 48 35 49 maintainer-clean-local: 36 rm -rf wiki.out wiki.tmp50 rm -rf "$(srcdir)/wiki.out" -
branches/alonbl/build/etc/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 CLEANFILES = openct.conf init-script openct.hald reader.conf \ -
branches/alonbl/build/macos/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 dist_noinst_SCRIPTS = libtool-bundle -
branches/alonbl/build/src/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 # Order IS important -
branches/alonbl/build/src/ct/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 lib_LTLIBRARIES = libopenct.la … … 7 7 buffer.c client.c error.c mainloop.c path.c \ 8 8 socket.c status.c tlv.c 9 libopenct_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 9 libopenct_la_CFLAGS = $(AM_CFLAGS) \ 10 -I$(top_srcdir)/src/include \ 11 -I$(top_builddir)/src/include 10 12 libopenct_la_LDFLAGS = \ 11 13 -version-info @OPENCT_LT_CURRENT@:@OPENCT_LT_REVISION@:@OPENCT_LT_AGE@ \ -
branches/alonbl/build/src/ctapi/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 openctinclude_HEADERS = ctapi.h … … 5 5 6 6 libopenctapi_la_SOURCES = ctapi.c ctapi.h 7 libopenctapi_la_LIBADD = $(top_srcdir)/src/ct/libopenct.la 8 libopenctapi_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 7 libopenctapi_la_LIBADD = $(top_builddir)/src/ct/libopenct.la 8 libopenctapi_la_CFLAGS = $(AM_CFLAGS) \ 9 -I$(top_srcdir)/src/include \ 10 -I$(top_builddir)/src/include 9 11 libopenctapi_la_LDFLAGS = -avoid-version -no-undefined --module -
branches/alonbl/build/src/ifd/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 noinst_LTLIBRARIES = libifd.la … … 23 23 ria.c 24 24 # new driver not working yet: ifd-wbeiuu.c 25 libifd_la_LIBADD = $(top_srcdir)/src/ct/libopenct.la $(LTLIB_LIBS) $(OPTIONAL_LIBUSB_LIBS) 26 libifd_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include \ 25 libifd_la_LIBADD = $(top_builddir)/src/ct/libopenct.la $(LTLIB_LIBS) $(OPTIONAL_LIBUSB_LIBS) 26 libifd_la_CFLAGS = $(AM_CFLAGS) \ 27 -I$(top_srcdir)/src/include \ 28 -I$(top_builddir)/src/include \ 27 29 $(OPTIONAL_PCSC_CFLAGS) $(OPTIONAL_LIBUSB_CFLAGS) $(LTLIB_CFLAGS) 28 30 29 31 ifdhandler_SOURCES = ifdhandler.c 30 32 ifdhandler_LDADD = libifd.la 31 ifdhandler_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 33 ifdhandler_CFLAGS = $(AM_CFLAGS) \ 34 -I$(top_srcdir)/src/include \ 35 -I$(top_builddir)/src/include 32 36 33 37 ifdproxy_SOURCES = ifdproxy.c ria-device.c ria-server.c 34 38 ifdproxy_LDADD = libifd.la 35 ifdproxy_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 39 ifdproxy_CFLAGS = $(AM_CFLAGS) \ 40 -I$(top_srcdir)/src/include \ 41 -I$(top_builddir)/src/include -
branches/alonbl/build/src/include/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 SUBDIRS = openct -
branches/alonbl/build/src/include/openct/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 DISTCLEANFILES = types.h 3 3 … … 5 5 apdu.h buffer.h conf.h device.h driver.h error.h ifd.h \ 6 6 logging.h openct.h path.h protocol.h server.h socket.h tlv.h 7 nodist_openctinclude_HEADERS = types.h7 nodist_openctinclude_HEADERS = $(builddir)/types.h -
branches/alonbl/build/src/pcsc/Makefile.am
r1016 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 if ENABLE_PCSC … … 7 7 openct_ifd_la_SOURCES = pcsc.c 8 8 openct_ifd_la_LDFLAGS = -module -avoid-version -no-undefined 9 openct_ifd_la_LIBADD = $(PCSC_LIBS) $(top_srcdir)/src/ctapi/libopenctapi.la 10 openct_ifd_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include -I$(top_srcdir)/src/ctapi \ 9 openct_ifd_la_LIBADD = $(PCSC_LIBS) $(top_builddir)/src/ctapi/libopenctapi.la 10 openct_ifd_la_CFLAGS = $(AM_CFLAGS) \ 11 -I$(top_srcdir)/src/include \ 12 -I$(top_builddir)/src/include \ 13 -I$(top_srcdir)/src/ctapi \ 11 14 $(PCSC_CFLAGS) 12 15 -
branches/alonbl/build/src/tools/Makefile.am
r1015 r1025 1 MAINTAINERCLEANFILES = Makefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 3 bin_PROGRAMS = openct-tool … … 6 6 7 7 openct_tool_SOURCES = openct-tool.c 8 openct_tool_LDADD = $(top_srcdir)/src/ct/libopenct.la 9 openct_tool_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 8 openct_tool_LDADD = $(top_builddir)/src/ct/libopenct.la 9 openct_tool_CFLAGS = $(AM_CFLAGS) \ 10 -I$(top_srcdir)/src/include \ 11 -I$(top_builddir)/src/include 10 12 11 13 openct_control_SOURCES = openct-control.c 12 openct_control_LDADD = $(top_srcdir)/src/ifd/libifd.la $(top_srcdir)/src/ct/libopenct.la 13 openct_control_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/include 14 openct_control_LDADD = $(top_builddir)/src/ifd/libifd.la $(top_builddir)/src/ct/libopenct.la 15 openct_control_CFLAGS = $(AM_CFLAGS) \ 16 -I$(top_srcdir)/src/include \ 17 -I$(top_builddir)/src/include
