Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

GNU Autoconf


January, 2006: GNUAutoconf

Listing 5

AC_INIT([myproject],[5.1],[bugs-myproject@mydomain])
AC_SUBST(CC,["/usr/local/bin/gcc3"])
AC_SUBST(CFLAGS,["-O3 -pg"])
AC_SUBST(DEFAULT_OWNER,["nobody"])
AC_SUBST(DEFAULT_PORT,["2345"])
AC_CONFIG_FILES([
    Makefile
    base/Makefile
    net/Makefile
    net/defaults.h
])


Related Reading


More Insights