Develop and Download Open Source Software

Browse CVS Repository

Contents of /canna/www/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.7 - (show annotations) (download)
Fri Dec 12 12:00:21 2003 UTC (20 years, 4 months ago) by aida_s
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +2 -2 lines
Canna 3.7 release.

1 # Makefile for WWW page
2 # $Id: Makefile,v 1.6 2002/12/02 01:13:16 aida_s Exp $
3
4 INSTDIR = /home/groups/c/ca/canna/htdocs
5 TOP = .
6 FILES = index.html links.html
7 SUBDIRS = sec canna37patches
8
9 MKINSTALLDIRS = $(TOP)/mkinstalldirs
10 TRYINSTALL = $(TOP)/tryinstall-sh -C
11 #TRYINSTALL = install -C
12
13 all: all-recursive force
14 # nothing
15 all-local: $(FILES) force
16
17 all-recursive: force
18 for d in $(SUBDIRS); do (cd $$d; $(MAKE) all); done
19 $(MAKE) all-local
20
21 update: force
22 cvs update -dP
23
24 install: install-recursive force
25 #cvs diff -u
26 $(MKINSTALLDIRS) $(INSTDIR)
27 for p in $(FILES); do \
28 $(TRYINSTALL) -m 664 $$p $(INSTDIR); \
29 done
30
31 install-recursive: all force
32 for d in $(SUBDIRS); do (cd $$d; $(MAKE) install); done
33
34 clean: clean-recursive force
35 # nothing
36 clean-recursive: force
37 for d in $(SUBDIRS); do (cd $$d; $(MAKE) clean); done
38
39 force:
40
41 .PHONY: force

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26