Changeset 1039
- Timestamp:
- Apr 16, 2009, 11:59:18 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.normalizers/trunk/build.xml
r1029 r1039 30 30 basedir="." 31 31 > 32 <description> 33 Build file for the Normalizers plug-in package fir BASE. The main 34 targets are ('dist' is default): 35 36 Clean up: 37 clean Remove generated files 38 distclean Remove all generated and downloaded files 39 40 Compiling: 41 build Build all Java code 42 c++ Build all C++ code in directory src/c++ 43 dist Build all Java code for distribution (put in 'dist' 44 subdirectory) 45 download-lib Download required external dependecy files 46 47 Packaging: 48 package: Create *.tar.gz file containing required jars and 49 source tar.gz files for non-Java source files. 50 </description> 32 51 33 52 <!--create this file if you need to override values from properties below --> … … 228 247 </target> 229 248 249 <target name="c++"> 250 <exec dir="${src}/c++/" executable="./bootstrap" /> 251 <replace file="${src}/c++/configure"> 252 <replacefilter 253 token="@PKGVERSION@" 254 value="${version}" 255 /> 256 </replace> 257 <chmod file="${src}/c++/configure" perm="a+x" /> 258 <exec dir="${src}/c++/" executable="./configure"> 259 </exec> 260 <exec dir="${src}/c++/" executable="make"> 261 </exec> 262 </target> 263 230 264 <target 231 265 name="download-lib"
Note: See TracChangeset
for help on using the changeset viewer.