2013-02-16 12:22:53 +01:00
|
|
|
# Copyright (C) 2012, 2013 Tom Willemsen
|
|
|
|
#
|
|
|
|
# This file is part of Markam
|
|
|
|
#
|
|
|
|
# Markam is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Markam is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Markam. If not, see <http://www.gnu.org/licenses/>.
|
2013-01-06 15:52:33 +01:00
|
|
|
INSTALL = install -D
|
|
|
|
|
2013-01-06 14:36:51 +01:00
|
|
|
export DESTDIR ?= /usr/local
|
2013-01-06 15:52:33 +01:00
|
|
|
export INSTALL_PROGRAM = $(INSTALL)
|
|
|
|
export INSTALL_DATA = $(INSTALL) -m 644
|
2013-01-06 14:36:51 +01:00
|
|
|
|
|
|
|
dirs = src doc conkeror
|
|
|
|
install-dirs = $(addprefix install-,$(dirs))
|
2013-01-06 15:30:50 +01:00
|
|
|
uninstall-dirs = $(addprefix uninstall-,$(dirs))
|
2013-01-06 15:59:16 +01:00
|
|
|
install-strip-dirs = $(addprefix installstrip-,$(dirs))
|
2012-12-24 01:27:14 +01:00
|
|
|
|
2013-01-06 15:30:50 +01:00
|
|
|
.PHONY: all $(dirs) install $(install-dirs) uninstall $(uninstall-dirs) \
|
|
|
|
dvi install-dvi pdf install-pdf ps install-ps
|
2012-12-29 16:54:16 +01:00
|
|
|
|
|
|
|
all: $(dirs)
|
2013-01-06 14:36:51 +01:00
|
|
|
install: $(install-dirs)
|
2013-01-06 15:30:50 +01:00
|
|
|
uninstall: $(uninstall-dirs)
|
2013-01-06 15:59:16 +01:00
|
|
|
install-strip: $(install-strip-dirs)
|
2013-01-06 14:36:51 +01:00
|
|
|
|
2012-12-29 16:54:16 +01:00
|
|
|
$(dirs):
|
|
|
|
$(MAKE) -C $@
|
2013-01-06 14:36:51 +01:00
|
|
|
|
|
|
|
$(install-dirs): install-%:
|
|
|
|
$(MAKE) -C $*/ install
|
2013-01-06 15:10:37 +01:00
|
|
|
|
2013-01-06 15:30:50 +01:00
|
|
|
$(uninstall-dirs): uninstall-%:
|
|
|
|
$(MAKE) -C $*/ uninstall
|
|
|
|
|
2013-01-06 15:59:16 +01:00
|
|
|
$(install-strip-dirs): installstrip-%:
|
|
|
|
$(MAKE) -C $*/ install-strip
|
|
|
|
|
2013-01-06 15:10:37 +01:00
|
|
|
dvi:
|
|
|
|
$(MAKE) -C doc/ dvi
|
|
|
|
|
|
|
|
pdf:
|
|
|
|
$(MAKE) -C doc/ pdf
|
|
|
|
|
|
|
|
ps:
|
|
|
|
$(MAKE) -C doc/ ps
|
|
|
|
|
|
|
|
install-dvi:
|
|
|
|
$(MAKE) -C doc/ install-dvi
|
|
|
|
|
|
|
|
install-pdf:
|
|
|
|
$(MAKE) -C doc/ install-pdf
|
|
|
|
|
|
|
|
install-ps:
|
|
|
|
$(MAKE) -C doc/ install-ps
|