20 lines
732 B
Text
20 lines
732 B
Text
|
|
dnl without this order in this file, autoconf will not work!
|
|
dnl the argument is a source file out of your sources. But
|
|
dnl acinclude.m4 makes the job for all programs ;-)
|
|
AC_INIT(acinclude.m4)
|
|
|
|
dnl without this order in this file, automake will be confused!
|
|
dnl the argument
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
dnl insert here your program name and version number
|
|
AC_PROG_CC
|
|
KDE_DO_IT_ALL(kpasman,0.1)
|
|
|
|
dnl in this space add everything you want to check for
|
|
dnl examples are specific headers, libraries, etc.
|
|
dnl everything to compile and run a KDE program is already checked
|
|
|
|
dnl add here all your Makefiles. This are created by configure
|
|
AC_OUTPUT(Makefile kpasman/Makefile kpasman/docs/Makefile kpasman/docs/en/Makefile po/Makefile )
|