summaryrefslogtreecommitdiff
path: root/Makefile
blob: de43ef72ff553378065c1e66d5f35de97d448554 (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:=$(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: