BotCommander - an Eggdrop commanding application
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
AC_INIT([src/main.c]) |
|
|
|
PACKAGE=botcommander |
|
VERSION=1.0 |
|
|
|
AM_INIT_AUTOMAKE($PACKAGE, $VERSION) |
|
|
|
AM_GNU_GETTEXT([external]) |
|
|
|
PKG_CHECK_MODULES(BCREQ, gtk+-2.0) |
|
|
|
AC_SUBST(BCREQ_CFLAGS) |
|
AC_SUBST(BCREQ_LIBS) |
|
|
|
AC_PROG_CC |
|
|
|
AC_OUTPUT([Makefile src/Makefile po/Makefile.in]) |
|
|
|
|