File: MakeMan

package info (click to toggle)
advi 1.6.0-12%2Betch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 17,524 kB
  • ctags: 2,830
  • sloc: ml: 12,261; sh: 4,299; ansic: 935; makefile: 748; perl: 57; tcl: 10
file content (43 lines) | stat: -rw-r--r-- 1,422 bytes parent folder | download | duplicates (4)
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
#*********************************************************************#
#                                                                     #
#                             Active-DVI                              #
#                                                                     #
#                   Projet Cristal, INRIA Rocquencourt                #
#                                                                     #
#  Copyright 2004 Institut National de Recherche en Informatique et   #
#  en Automatique.  All rights reserved.  This file is distributed    #
#  under the terms of the GNU Lesser General Public License.          #
#                                                                     #
#  Pierre Weis.                                                       #
#                                                                     #
#*********************************************************************#

# $Id: MakeMan,v 1.3 2004/10/02 21:10:57 weis Exp $

# The makefile for man files generation.

include ../Makefile.config

# Sources files directory
SRC=../doc_src

# Prefix before regular names
PACKAGE=advi

# The list of files for this part of the Web site
FILES=$(PACKAGE).$(MANEXT)

all: expand manpages
	
expand:
	cd $(SRC) && $(MAKE)

clean:
	cd $(SRC) && $(MAKE) clean
	$(RM) $(FILES)

manpages:
	for i in $(SRC)/*.m; do \
	    $(CP) $$i ./`basename $$i .m`.$(MANEXT); \
	done