diff options
Diffstat (limited to 'kwordquiz/Makefile.am')
-rw-r--r-- | kwordquiz/Makefile.am | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kwordquiz/Makefile.am b/kwordquiz/Makefile.am new file mode 100644 index 00000000..85c32be2 --- /dev/null +++ b/kwordquiz/Makefile.am @@ -0,0 +1,32 @@ +####### kdevelop will overwrite this part!!! (begin)########## + +SUBDIRS = src + +EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL README TODO + +####### kdevelop will overwrite this part!!! (end)############ +# not a GNU package. You can remove this line, if +# have all needed files, that a GNU package needs +AUTOMAKE_OPTIONS = foreign + +$(top_srcdir)/configure.in: $(top_srcdir)/subdirs + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ; + +$(top_srcdir)/subdirs: + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs + +$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in + @cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4 + +MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files + +package-messages: + $(MAKE) -f admin/Makefile.common package-messages + $(MAKE) -C po merge + +dist-hook: + cd $(top_distdir) && perl admin/am_edit -padmin + cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs + + +include ../admin/Doxyfile.am |