1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-09 03:43:54 +02:00

* Autoconf / Automake configuration and building.

This commit is contained in:
Eelco Dolstra 2003-04-04 16:14:56 +00:00
parent ab723e341a
commit 136c00e881
15 changed files with 639 additions and 1470 deletions

14
configure.ac Normal file
View file

@ -0,0 +1,14 @@
AC_INIT(nix, 0.1)
AC_CONFIG_SRCDIR(src/nix.cc)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
AC_PREFIX_DEFAULT(/nix)
AC_CANONICAL_HOST
AC_PROG_CC
AC_PROG_CXX
AC_CONFIG_FILES(Makefile src/Makefile src/nix-instantiate)
AC_OUTPUT