File: Makefile

package info (click to toggle)
routino 2.7-1.2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,360 kB
  • ctags: 2,272
  • sloc: ansic: 19,190; xml: 1,862; perl: 1,265; makefile: 554; sh: 281
file content (75 lines) | stat: -rw-r--r-- 1,921 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Documentation directory Makefile
#
# Part of the Routino routing software.
#
# This file Copyright 2010-2014 Andrew M. Bishop
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

# All configuration is in the top-level Makefile.conf

include ../Makefile.conf

# Files to install

HTML_FILES=$(notdir $(wildcard html/*.html)) $(notdir $(wildcard html/*.css))
TXT_FILES="ALGORITHM.txt  CONFIGURATION.txt  DATA.txt  DATALIFE.txt LIMITS.txt NEWS.txt  OUTPUT.txt  README.txt  TAGGING.txt  USAGE.txt"
TOP_FILES=../agpl-3.0.txt

########

all:

########

test:

########

install: install-txt install-html

install-txt:
	@[ -d $(DESTDIR)$(docdir) ] || mkdir -p $(DESTDIR)$(docdir)
	@for file in $(TOP_FILES); do \
	    echo cp $$file $(DESTDIR)$(docdir) ;\
	    cp -f $$file $(DESTDIR)$(docdir) ;\
	 done
	@for file in $(TXT_FILES); do \
	    echo cp $$file $(DESTDIR)$(docdir) ;\
	    cp -f $$file $(DESTDIR)$(docdir) ;\
	 done

install-html:
	@[ -d $(DESTDIR)$(docdir)/html ] || mkdir -p $(DESTDIR)$(docdir)/html
	@for file in $(HTML_FILES); do \
	    echo cp html/$$file $(DESTDIR)$(docdir)/html ;\
	    cp -f html/$$file $(DESTDIR)$(docdir)/html ;\
	 done

########

clean:
	rm -f *~
	rm -f html/*~

########

distclean: clean

########

.PHONY:: all test install clean distclean

.PHONY:: install-txt install-html