diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-07-31 23:51:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-07-31 23:51:05 +0900 |
commit | bb90a957b5a2e22791baae4d3f777c39a8f77879 (patch) | |
tree | 813222c1b3f4f8c5377d74314eafa83c5a972ec5 /Makefile.am.in | |
download | mathemagics-bb90a957b5a2e22791baae4d3f777c39a8f77879.tar.gz mathemagics-bb90a957b5a2e22791baae4d3f777c39a8f77879.zip |
Initial code import from OpenSuSE package.
https://download.opensuse.org/repositories/KDE:/KDE3/openSUSE_Leap_15.1/src/kde3-mathemagics-1.1-lp151.6.1.src.rpm
Original package is licenced under GPL 2.0.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'Makefile.am.in')
-rw-r--r-- | Makefile.am.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.am.in b/Makefile.am.in new file mode 100644 index 0000000..7701454 --- /dev/null +++ b/Makefile.am.in @@ -0,0 +1,29 @@ +## kdenonbeta/Makefile.am +## (C) 1997 Stephan Kulow + +AUTOMAKE_OPTIONS = foreign +DISTCLEANFILES = inst-apps + + +install-data-local: + @echo "" + @echo "" + @echo "*************** Important *************************" + @echo "" + @echo "comments/problems to jason@katzbrown.com please!" + @echo "" + @echo "****************************************************" + @echo "" + +$(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 + +$(top_srcdir)/configure.in: $(top_srcdir)/configure.files $(shell test -f $(top_srcdir)/configure.files && cat $(top_srcdir)/configure.files) + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in +$(top_srcdir)/subdirs: + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs +$(top_srcdir)/configure.files: + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files + +MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 SUBDIRS configure.files + |