-mkdir -p ${PREFIX}/include/${globalprefix}/${lbutilsprefix}
# ${INSTALL} -m 644 ${top_srcdir}/LICENSE ${PREFIX}/share/doc/${package}-${version}
${INSTALL} -m 755 "libglite_lbutils_db.la" "${PREFIX}/lib/glite-lbutils-db.la"; \
- ${INSTALL} -m 644 ${HDRS} ${PREFIX}/include/${globalprefix}/${lbutilsprefix}
+ ${INSTALL} -m 644 ${top_srcdir}/interface/${HDRS} ${PREFIX}/include/${globalprefix}/${lbutilsprefix}
clean:
Revision history:
$Log$
+ Revision 1.1.1.1 2006/07/14 06:59:03 akrenek
+ module created
+
Revision 1.7 2006/04/26 11:39:55 flammer
Corrected wrong template syntax.
Load common targets
========================================= -->
<!-- Put your language target (java/c++-ant/c++-autotool/perl) here -->
- <!-- <import file="${global.targets-xxx.file}" /> -->
+ <import file="${global.targets-simple_make.file}" />
<!-- =========================================
Load version file
<target name="localinit"
description="Module specific initialization tasks">
+ <antcall target="lbmakefiles" />
</target>
<target name="localcompile"
Revision history:
$Log$
+ Revision 1.1.1.1 2006/07/14 06:59:03 akrenek
+ module created
+
Revision 1.3 2004/07/20 16:08:30 flammer
Changed incorrect my_... instead of .._template entries for subsystem and component.
-->
<project name="lb-utils db component configuration properties">
+ <target name="lbmakefiles">
+ <exec executable="ln" failonerror="true">
+ <arg line="-fs ${component.dir}/Makefile ${module.build.dir}/Makefile"/>
+ </exec>
+ <echo file="${module.build.dir}/Makefile.inc">
+top_srcdir=..
+builddir=build
+stagedir=${stage.abs.dir}
+distdir=${dist.dir}
+globalprefix=${global.prefix}
+lbutilsprefix=${subsystem.prefix}
+package=${module.package.name}
+version=${module.version}
+PREFIX=${install.dir}
+
+glite_location=${with.glite.location}
+mysql_prefix=${with.mysql.prefix}
+mysql_version=${ext.mysql.version}
+cppunit_prefix=${with.cppunit.prefix}
+ </echo>
+ <echo file="${module.build.dir}/C.dox">
+PROJECT_NAME = "Glite LB/JP Utils: Database Module"
+PROJECT_NUMBER = ${module.version}
+OUTPUT_DIRECTORY = ${component.dir}/doc/C
+OPTIMIZE_OUTPUT_FOR_C = YES
+INPUT = ../interface/db.h
+SHOW_DIRECTORIES = NO
+FULL_PATH_NAMES = NO
+EXTRACT_ALL = YES
+PDF_HYPERLINKS = YES
+USE_PDFLATEX = YES
+MACRO_EXPANSION = YES
+EXPAND_ONLY_PREDEF = YES
+#PREDEFINED = _EDG_WLL_EVENT_COMMON
+HAVE_DOT = NO
+ </echo>
+ </target>
+
</project>