summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..de43ef7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,34 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+SRCDIR:=$(firstword $(dir $(MAKEFILE_LIST)))
+include $(SRCDIR)config.mk
+
+presentationdir:=$(templatedir)/presnt
+
+.PHONY: all install clean mostlyclean TAGS info dvi check dist uninstall
+clean mostlyclean TAGS info dvi check: all
+dist: uninstall
+
+all:
+ $(info Pretending to work hard.)
+ @true
+
+install:
+ install -d $(presentationdir)
+ install -t $(presentationdir) $(wildcard $(SRCDIR)src/presnt/*)
+
+uninstall:
+ $(info Sorry, not implemented.)
+ @false
+
+distclean:
+ rm $(SRCDIR)config.mk
+
+# vim: set noet sw=4 ts=4: