diff options
author | Martin Mares <mj@ucw.cz> | 1999-01-09 16:02:11 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-01-09 16:02:11 +0100 |
commit | 2f9bcf9713523f6fefecd143cc2aa2a8dda7f27f (patch) | |
tree | 3580ae083792f0e84fae328028cb59d2144769e6 /Makefile | |
parent | 6996f459c6d8e6205bbacd83e3656b47635f7d6d (diff) | |
download | bird-2f9bcf9713523f6fefecd143cc2aa2a8dda7f27f.tar bird-2f9bcf9713523f6fefecd143cc2aa2a8dda7f27f.zip |
First step of "autoconfization". Created a configure script which
guesses most system-dependent parameters and determines name of system
configuration file (sysdep/cf/...) with the remaining ones.
To compile BIRD, you now need to do:
autoconf # Create configure from configure.in
./configure # Run configure script
make # Compile everything
Configuration files:
sysdep/config.h Master config file
sysdep/autoconf.h Parameters determined by configure script
sysdep/cf/*.h Fixed system configuration we're unable
to guess.
Makefiles are still the original ones, but this will change soon.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,3 +41,4 @@ clean: rm -rf obj rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name .depend -or -name .#*` rm -f bird .dep + rm -f config.log config.cache config.status configure sysdep/autoconf.h |