File: Makefile

package info (click to toggle)
cthugha 1.1a-7
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 2,904 kB
  • ctags: 2,155
  • sloc: ansic: 22,340; makefile: 443; sh: 75; perl: 15
file content (40 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
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
#
# Makefile for cthugha-L
# documentation directory
#
# You should not need to change anything in this file.
# Set your preferences in the file configure.
#

include ../configure

all: doc

#
# Documentation
#
.PHONY: doc
doc:
	$(MAKE) -C src doc

.PHONY: dist-clean
dist-clean:
	$(MAKE) -C src dist-clean

.PHONY: clean
clean:
	$(MAKE) -C src clean


# installation
install: 
	-${INSTALL} -m 0644 cthugha.1	$(INST_MAN)
	-${INSTALL} -m 0644 cthugha.info	$(INST_INFO)
	#-(grep -q "cthugha" ${INST_INFO}/dir ||					\
	#  echo "* cthugha: (cthugha).   An Oscilloscope on Acid"		\
	#	>> ${INST_INFO}/dir)

.PHONY: