This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
kpasman/configure.in

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 )