OSDN Git Service

Import JM CVS Repository from cvs.linux.or.jp.
[linuxjm/jm.git] / www / INDEX / Makefile
1 #
2 # Makefile for contents in www/status
3 # $Id: Makefile,v 1.5 2000/08/02 10:00:53 nakano Exp $
4 #
5 include ../../JM.rules
6
7 ifndef WORKDIR
8 WORKDIR         = /var/tmp/JM
9 endif
10
11 INDICES = ldp.html linux.html gnu.html misc.html pod.html progress.html 
12 .SUFFIXES: .m4 .html
13
14 .m4.html:
15         m4 -P -D _WORKDIR=$(WORKDIR) -D _WWWROOT=$(WWWROOT) $*.m4\
16         | nkf -j > $*.html
17
18 all: index.html
19
20 index.html: $(INDICES)
21
22 ldp.html: ../bin/list_ldp.perl
23
24 gnu.html: ../bin/list.perl gnu.list
25
26 linux.html: ../bin/list.perl linux.list
27
28 misc.html: ../bin/list.perl misc.list
29
30 pod.html: ../bin/list_pod.perl pod.list
31
32 progress.html: ../bin/list_progress.perl
33
34 *.html: ../jm_www.m4 ../../cvs-status-modified
35
36 ../../cvs-status-modified:
37         make -C ../.. chkcvs
38
39 clean:
40         @rm -f index.html ldp.html linux.html gnu.html\
41         misc.html pod.html progress.html
42
43 install: all
44