summaryrefslogtreecommitdiffstats
path: root/admin/Makefile.common
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-07-31 23:51:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-07-31 23:51:05 +0900
commitbb90a957b5a2e22791baae4d3f777c39a8f77879 (patch)
tree813222c1b3f4f8c5377d74314eafa83c5a972ec5 /admin/Makefile.common
downloadmathemagics-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 'admin/Makefile.common')
-rw-r--r--admin/Makefile.common35
1 files changed, 35 insertions, 0 deletions
diff --git a/admin/Makefile.common b/admin/Makefile.common
new file mode 100644
index 0000000..0ecd10d
--- /dev/null
+++ b/admin/Makefile.common
@@ -0,0 +1,35 @@
+### Makefile.common
+###
+### Copyright (C) 2002 by the KDE developers
+
+### All the real work is done by the shellscript cvs.sh
+
+SHELL=/bin/sh
+
+cvs dist cvs-clean configure configure.in configure.files subdirs package-messages package-merge Makefile.am acinclude.m4:
+ @admindir=$(admindir); \
+ if test "x$$admindir" = x; then \
+ admindir=.; until test -f $$admindir/admin/cvs.sh; do \
+ admindir=$$admindir/..; \
+ if test `cd $$admindir && pwd` = / ; then break; fi; \
+ done; \
+ admindir=$$admindir/admin; \
+ if test -f $$admindir/cvs.sh; then :; else \
+ echo "Can't find the admin/ directory in any parent of the"; \
+ echo "current directory. Please set it with admindir=..."; \
+ exit 1; \
+ fi; \
+ fi; \
+ if test "$@" = "package-merge"; then \
+ MAKE="$(MAKE)" POFILES="$(POFILES)" PACKAGE="$(PACKAGE)" \
+ $(SHELL) $$admindir/cvs.sh package-merge ;\
+ else \
+ MAKE="$(MAKE)" $(SHELL) $$admindir/cvs.sh $@ ;\
+ fi
+
+configure.in: configure.files subdirs
+configure.files: subdirs
+
+.SILENT:
+
+.PHONY: cvs dist cvs-clean package-merge package-messages