File: Makefile

package info (click to toggle)
fidogate 4.4.7-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,784 kB
  • ctags: 2,957
  • sloc: ansic: 24,413; perl: 4,932; makefile: 885; sh: 824; yacc: 662; tcl: 415
file content (55 lines) | stat: -rw-r--r-- 974 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
#
# $Id: Makefile,v 4.9 1999/04/03 13:28:56 mj Exp $
#
# Makefile FIDOGATE doc/
#

TOPDIR		= ..

include $(TOPDIR)/config.make
include $(TOPDIR)/rules.make

SUBDIRS		= html gatebau


all::		fidogate.info fidogate.txt

all clean veryclean check depend install::
	for d in $(SUBDIRS); do \
	  if [ -f $$d/Makefile ]; then $(MAKE) -C $$d $@ || exit 1; fi; \
	done


doc:		fidogate.info fidogate.txt fidogate.ps


fidogate.info:	fidogate.texi
	-makeinfo fidogate.texi

fidogate.txt:	fidogate.info
	$(PERL) info2txt.pl fidogate.info-* >fidogate.txt

fidogate.dvi:	fidogate.texi
	texi2dvi fidogate.texi

fidogate.ps:	fidogate.dvi
	dvips fidogate -o


clean::
	rm -f *~ *.bak *.o tags TAGS core
	rm -f *.cp *.cps *.fn *.fns *.ky *.kys *.pg *.pgs *.toc *.aux
	rm -f *.tp *.tps *.vr *.vrs *.log

veryclean::	clean
	rm -f fidogate.info* fidogate.ps fidogate.dvi fidogate.txt

check::
verify:	check
test:	check


install::
	$(INSTALL_DATA) fidogate.info* $(PREFIX)$(INFODIR)

depend::