aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/unix.in
Commit message (Collapse)AuthorAgeFilesLines
* s/build-dir/build_dir/ in unix.in and nmake.in, missed themlloyd2009-07-011-2/+2
|
* Change the makefile template language somewhat. Previously variableslloyd2009-07-011-30/+30
| | | | | | | | | | | | | | | | | had been denoted with @{var:NAME}, this has changed to %{NAME}. This is pretty much a wash for configure.pl but it makes it much easier to process the templates using Python's string.Template. The logic being the 'var:' prefix had been to support conditional statements in the templates (using an 'if:' prefix), but this functionality was not being used and support for it is removed from configure.pl in this revision. For a similiar reason, rename a number of template variables with hyphens in their name to use underscores instead. This is slightly more consistent anyway (since many variable names had already used _ instead of -) but more importantly makes them much easier to deal with using aforementioned Python template code. This should not result in any user-visible change (unless I messed up).
* Allow for the shared library soname to stay fixed even when the versionlloyd2009-05-131-5/+1
| | | | number increments, for stable releases that don't affect binary compat.
* Make installation a little noisierlloyd2008-11-131-2/+2
|
* In Makefiles and pkg-config / botan-config, use -lbotan-@{var:version}lloyd2008-11-071-1/+1
| | | | | | | | so we link against the specific intended version of the library, for instance -lbotan-1.7.20 rather than simply -lbotan This again seems especially an improvement where you want more than one version installed (1.6 vs 1.7, for instance).
* Provide pkg-config file as botan-$major$minor.pc, so it can be used like:lloyd2008-11-061-3/+3
| | | | | | | $ pkg-config botan-17 --libs -L/usr/local/lib -lbotan -lm -lpthread -lrt to make it easier to have multiple versions of Botan installed and in use at the same time.
* Install pkg-config file to /lib/pkgconfiglloyd2008-10-221-2/+6
|
* Delete generated botan.pc on make distcleanlloyd2008-10-151-1/+1
|
* Only delete Doxygen files on distclean, not regular cleanlloyd2008-10-131-1/+1
|
* Add basic support for Doxygen, including a make targetlloyd2008-10-131-1/+5
|
* Rename makefile variable INSTALLROOT to DESTDIR for autotools compatabilitylloyd2008-09-301-6/+6
|
* Remove the misc dir:lloyd2008-09-291-0/+117
Moved XS, Boost Python, and SWIG wrappers to new toplevel directory 'wrappers' Moved NIST X.509 test suite into checks directory Move the build information used by configure.pl to src/build-data Move scripts directory to doc (for lack of a better spot)