summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9741dea12ff8cff6f89e915b17348b53413d27f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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:=$(DESTDIR)$(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 -m 644 -t $(presentationdir) $(wildcard $(SRCDIR)src/presnt/*)

uninstall:
	$(info Sorry, not implemented.)
	@false

distclean:
	rm -f $(SRCDIR)config.mk $(SRCDIR)config.log $(SRCDIR)config.status

# vim: set noet sw=4 ts=4: