import kpasman 0.1 sources

This commit is contained in:
tengel 2024-03-20 09:22:23 -05:00
parent c8ae81dfef
commit 8da6bf0752
110 changed files with 27300 additions and 0 deletions

20
configure.in Normal file
View file

@ -0,0 +1,20 @@
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 )