markam/Makefile

65 lines
1.6 KiB
Makefile
Raw Normal View History

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/>.
INSTALL = install -D
export DESTDIR ?= /usr/local
export INSTALL_PROGRAM = $(INSTALL)
export INSTALL_DATA = $(INSTALL) -m 644
dirs = src doc conkeror
install-dirs = $(addprefix install-,$(dirs))
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
.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)
install: $(install-dirs)
uninstall: $(uninstall-dirs)
2013-01-06 15:59:16 +01:00
install-strip: $(install-strip-dirs)
2012-12-29 16:54:16 +01:00
$(dirs):
$(MAKE) -C $@
$(install-dirs): install-%:
$(MAKE) -C $*/ install
$(uninstall-dirs): uninstall-%:
$(MAKE) -C $*/ uninstall
2013-01-06 15:59:16 +01:00
$(install-strip-dirs): installstrip-%:
$(MAKE) -C $*/ install-strip
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