/[webwml]/webwml/Makefile.common
ViewVC logotype

Diff of /webwml/Makefile.common

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.39 by joy, Sun Jul 22 20:18:56 2001 UTC revision 1.91 by joy, Fri Aug 8 13:04:55 2008 UTC
# Line 3  Line 3 
3    
4  CUR_YEAR := $(shell date +%Y)  CUR_YEAR := $(shell date +%Y)
5    
 RELHTMLBASE := ../../debian.org  
6  ENGLISHSRCDIR := $(WMLBASE)/../english  ENGLISHSRCDIR := $(WMLBASE)/../english
 TEMPLDIR := $(ENGLISHSRCDIR)/template/debian  
   
7  ENGLISHDIR := $(ENGLISHSRCDIR)  ENGLISHDIR := $(ENGLISHSRCDIR)
8  # ^ just an alias ^  # ^ just an alias ^
9    
10    TEMPLDIR := $(ENGLISHDIR)/template/debian
11    RELHTMLBASE := ../../www
12  HTMLDIR = $(WMLBASE)/$(RELHTMLBASE)/$(CUR_DIR)  HTMLDIR = $(WMLBASE)/$(RELHTMLBASE)/$(CUR_DIR)
13    
14    LOCALEDIR := $(WMLBASE)/../locale/$(LANGUAGE)/LC_MESSAGES
15    ifneq "$(LANGUAGE)" "en"
16    GETTEXTDEP := $(LOCALEDIR)/templates.mo $(LOCALEDIR)/countries.mo $(LOCALEDIR)/langs.mo $(LOCALEDIR)/date.mo
17    ifneq "$(GETTEXTFILES)" ""
18    GETTEXTDEP += $(addprefix $(LOCALEDIR)/,$(GETTEXTFILES))
19    endif
20    endif
21    
22  LANGUAGECAP = $(shell echo $(LANGUAGE) | tr "a-z" "A-Z")  LANGUAGECAP = $(shell echo $(LANGUAGE) | tr "a-z" "A-Z")
23  WMLOPTIONS := -q -D CUR_YEAR=$(CUR_YEAR)  WMLOPTIONS := -q -D CUR_YEAR=$(CUR_YEAR)
24  WMLOUTFILE = $(@F)  WMLOUTFILE = $(@F)
# Line 29  HTMLDESTFILES = $(sort $(foreach i,$(SUB Line 37  HTMLDESTFILES = $(sort $(foreach i,$(SUB
37          $(patsubst %.wml,$(HTMLDIR)/%.$(LANGUAGE)-$(i).html,$(WMLFILES))))          $(patsubst %.wml,$(HTMLDIR)/%.$(LANGUAGE)-$(i).html,$(WMLFILES))))
38  endif  endif
39    
40  JPGSOURCE := $(wildcard *.jpg)  OTHERFILES := $(wildcard *.ps.gz *.eps *.pdf *.css)
41  GIFSOURCE := $(wildcard *.gif)  OTHERFILES += $(wildcard *.jpg *.jpeg *.gif *.png *.fig *.xcf *.xcf.gz *.ppm *.svg)
42  PNGSOURCE := $(wildcard *.png)  OTHERDESTFILES := $(patsubst %,$(HTMLDIR)/%,$(OTHERFILES))
 PSSOURCE := $(wildcard *.ps.gz)  
 EPSSOURCE := $(wildcard *.eps)  
 PDFSOURCE := $(wildcard *.pdf)  
 FIGSOURCE := $(wildcard *.fig)  
 XCFSOURCE := $(wildcard *.xcf.gz)  
 CSSSOURCE := $(wildcard *.css)  
 IMGFILES := $(JPGSOURCE) $(GIFSOURCE) $(PNGSOURCE) $(PSSOURCE) $(EPSSOURCE) $(PDFSOURCE) $(FIGSOURCE) $(XCFSOURCE) $(CSSSOURCE)  
 IMGDESTFILES := $(patsubst %,$(HTMLDIR)/%,$(IMGFILES))  
43    
44  existing-SUBS := $(shell for dir in $(wildcard $(SUBS)) ''; do test -d $$dir && echo $$dir; done)  existing-SUBS := $(shell for dir in $(wildcard $(SUBS)) ''; do test -d $$dir && echo $$dir; done)
45  existing-SUBS-install := $(addsuffix -install,$(existing-SUBS))  existing-SUBS-install := $(addsuffix -install,$(existing-SUBS))
# Line 52  all:: $(HTMLFILES) $(existing-SUBS) Line 52  all:: $(HTMLFILES) $(existing-SUBS)
52  $(existing-SUBS):  $(existing-SUBS):
53          -$(MAKE) -C $@          -$(MAKE) -C $@
54    
55  install::  install:: $(HTMLDESTFILES) $(OTHERDESTFILES) $(existing-SUBS-install)
         test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)  
 install:: $(HTMLDESTFILES) $(IMGDESTFILES) $(existing-SUBS-install)  
56    
57  $(existing-SUBS-install):  $(existing-SUBS-install):
58          -$(MAKE) -C $(subst -install,,$@) install          -$(MAKE) -C $(patsubst %-install,%,$@) install
59    
60  clean::  clean::
61          rm -f *.$(LANGUAGE).html *~          rm -f *.$(LANGUAGE).html *~ *.forced
62  clean:: $(existing-SUBS-clean)  clean:: $(existing-SUBS-clean)
63    
64  $(existing-SUBS-clean):  $(existing-SUBS-clean):
65          -$(MAKE) -C $(subst -clean,,$@) clean          -$(MAKE) -C $(patsubst %-clean,%,$@) clean
66    
67  cleandest::  cleandest::
68          rm -f $(HTMLDIR)/*.$(LANGUAGE).html          rm -f $(HTMLDIR)/*.$(LANGUAGE).html
69  cleandest:: $(existing-SUBS-cleandest)  cleandest:: $(existing-SUBS-cleandest)
70    
71  $(existing-SUBS-cleandest):  $(existing-SUBS-cleandest):
72          -$(MAKE) -C $(subst -cleandest,,$@) cleandest          -$(MAKE) -C $(patsubst %-cleandest,%,$@) cleandest
73    
74  # subdirectories of News, events and security dirs each have  # subdirectories of News, events and security dirs each have
75  # their own generic wml file deps  # their own generic wml file deps
# Line 82  ifneq "$(findstring /events/,$(CURDIR))" Line 80  ifneq "$(findstring /events/,$(CURDIR))"
80  NOGENERICDEP := true  NOGENERICDEP := true
81  endif  endif
82  ifneq "$(findstring /security/,$(CURDIR))" ""  ifneq "$(findstring /security/,$(CURDIR))" ""
83    ifeq "$(findstring security/audit,$(CURDIR))" ""
84    NOGENERICDEP := true
85    endif
86    endif
87    ifneq "$(findstring legal/licenses,$(CURDIR))" ""
88    NOGENERICDEP := true
89    endif
90    ifneq "$(findstring /users/,$(CURDIR))" ""
91  NOGENERICDEP := true  NOGENERICDEP := true
92  endif  endif
93    
94  # the rule for every wml file  # the rule for every wml file
95  ifndef NOGENERICDEP  ifndef NOGENERICDEP
96    ifeq "$(findstring /CD,$(CURDIR))" ""
97  %.$(LANGUAGE).html : %.wml $(WMLBASE)/../.wmlrc $(WMLBASE)/.wmlrc \  %.$(LANGUAGE).html : %.wml $(WMLBASE)/../.wmlrc $(WMLBASE)/.wmlrc \
98    $(TEMPLDIR)/template.wml $(TEMPLDIR)/languages.wml $(HTMLDEP)    $(TEMPLDIR)/template.wml $(TEMPLDIR)/languages.wml $(GETTEXTDEP)
99          $(WML) $(<F)          $(WML) $(<F)
100    else
101    ifeq "$(findstring /CD/vendors,$(CURDIR))" ""
102    %.$(LANGUAGE).html : %.wml $(WMLBASE)/../.wmlrc $(WMLBASE)/.wmlrc \
103      $(TEMPLDIR)/cdimage.wml $(GETTEXTDEP)
104            $(WML) $(<F)
105    else
106    %.$(LANGUAGE).html : %.wml $(WMLBASE)/../.wmlrc $(WMLBASE)/.wmlrc \
107      $(TEMPLDIR)/template.wml $(TEMPLDIR)/languages.wml $(GETTEXTDEP)
108            $(WML) $(<F)
109    endif
110    endif
111  ifeq "$(LANGUAGE)" "en"  ifeq "$(LANGUAGE)" "en"
112  ifeq "$(findstring /international/,$(CURDIR)/)" ""  ifeq "$(findstring /international/,$(CURDIR)/)" ""
113          $(WMLBASE)/../touch_translations.pl $(CURDIR)/$(<F) $(LANGUAGE)          -$(WMLBASE)/../touch_translations.pl $(CURDIR)/$(<F) $(LANGUAGE)
114  endif  endif
115  endif  endif
116  ifneq "$(findstring /international/,$(CURDIR)/)" ""  ifneq "$(findstring /international/,$(CURDIR)/)" ""
117          $(WMLBASE)/../touch_translations.pl $(CURDIR)/$(<F) $(LANGUAGE)          -$(WMLBASE)/../touch_translations.pl $(CURDIR)/$(<F) $(LANGUAGE)
118  endif  endif
119  endif  endif
120    
121  ifndef NOGENERICINSTDEP  ifndef NOGENERICINSTDEP
122  $(HTMLDIR)/%.$(LANGUAGE).html: %.$(LANGUAGE).html  $(HTMLDIR)/%.$(LANGUAGE).html: %.$(LANGUAGE).html
123            @test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)
124          @echo copying $(@F) to $(HTMLDIR)          @echo copying $(@F) to $(HTMLDIR)
125          -@install -m 664 -p $(@F) $(HTMLDIR)          -@install -m 664 -p $(@F) $(HTMLDIR)
126    ifeq ($(LANGUAGE),no)
127            @echo making a link $(@D)/$(*F).nb.html -\> $(@F)
128            @ln -sf $(@F) $(@D)/$(*F).nb.html
129    endif
130  ifeq ($(LANGUAGE),en)  ifeq ($(LANGUAGE),en)
131          @echo making a link $(@D)/$(*F).html -\> $(@F)          @echo making a link $(@D)/$(*F).html -\> $(@F)
132          @ln -sf $(@F) $(@D)/$(*F).html          @ln -sf $(@F) $(@D)/$(*F).html
133            @ln -sf $(@F) $(@D)/$(*F).en-us.html
134            @ln -sf $(@F) $(@D)/$(*F).en-gb.html
135  endif  endif
136  endif  endif
137    
138  $(IMGDESTFILES): $(HTMLDIR)/%: %  #    Ensure that MO files do exist
139    #    Translators have to run make under webwml/<lang>/po if they
140    #    want it updated, it cannot be automatically performed.
141    $(LOCALEDIR)/templates.mo:
142            $(MAKE) -C $(WMLBASE)/po install
143    
144    $(OTHERDESTFILES): $(HTMLDIR)/%: %
145            @test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)
146          install -m 664 -p $< $(HTMLDIR)          install -m 664 -p $< $(HTMLDIR)
147  ifeq "$(LANGUAGE)" "en"  ifeq "$(LANGUAGE)" "en"
148    # probably doesn't work for *.gz files, FIXME
149          [ -f "$(HTMLDIR)/$(basename $(basename $<))$(suffix $<)" ] || ln -s $< $(HTMLDIR)/$(basename $(basename $<))$(suffix $<)          [ -f "$(HTMLDIR)/$(basename $(basename $<))$(suffix $<)" ] || ln -s $< $(HTMLDIR)/$(basename $(basename $<))$(suffix $<)
150  endif  endif
151    
# Line 120  endif Line 153  endif
153  $(TEMPLDIR)/%.wml:  $(TEMPLDIR)/%.wml:
154          touch $@          touch $@
155    
156    gendep:
157            @for f in $(TEMPLDIR)/*.wml $(TEMPLDIR)/weeklynews/*.wml; do \
158              grep -q '^#use wml::debian' $$f || continue; \
159              g=`echo "$$f" | sed -e 's,$(TEMPLDIR),\$$(TEMPLDIR),'`; \
160              grep '^#use wml::debian' $$f |\
161                grep -v openrecode |\
162                sed -e 's,.*::,\$$(TEMPLDIR)/,' \
163                    -e 's/ .*$$//' \
164                    -e 's/$$/.wml/' |\
165                awk "BEGIN {printf \"X$$g:\"}"'{printf " %s", $$1}' |\
166                fold -b -s -w 70 |\
167                sed -e 's/^\$$/  \$$/' -e 's/^X//' -e '/:$$/d' -e '$$!s/$$/\\/'; \
168              echo; \
169            done
170    
171    #  this dependency cannot be automatically computed
172  $(TEMPLDIR)/basic.wml: $(TEMPLDIR)/navbar.wml  $(TEMPLDIR)/basic.wml: $(TEMPLDIR)/navbar.wml
173  $(TEMPLDIR)/footer.wml: $(TEMPLDIR)/ctime.wml  
174  $(TEMPLDIR)/languages.wml: $(TEMPLDIR)/language_names.wml  #  dependencies below are generated by gendep and manually checked
175  $(TEMPLDIR)/mainpage.wml: $(TEMPLDIR)/basic.wml $(TEMPLDIR)/mirrors.wml \  $(TEMPLDIR)/basic.wml: $(TEMPLDIR)/common_translation.wml \
176    $(TEMPLDIR)/languages.wml $(TEMPLDIR)/footer.wml $(TEMPLDIR)/links.tags.wml \    $(TEMPLDIR)/common_tags.wml $(TEMPLDIR)/footer.wml \
177    $(ENGLISHSRCDIR)/Pics/blue-upperleft.png $(ENGLISHSRCDIR)/Pics/blue-upperright.png \    $(TEMPLDIR)/navbar.wml
178    $(ENGLISHSRCDIR)/Pics/blue-lowerleft.png $(ENGLISHSRCDIR)/Pics/blue-lowerright.png  $(TEMPLDIR)/cdimage.wml: $(TEMPLDIR)/common_translation.wml \
179  $(TEMPLDIR)/mirrors.wml: $(TEMPLDIR)/countries.wml    $(TEMPLDIR)/common_tags.wml $(TEMPLDIR)/languages.wml \
180  $(TEMPLDIR)/template.wml: $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml \    $(TEMPLDIR)/links.tags.wml $(TEMPLDIR)/basic.wml
181    $(TEMPLDIR)/footer.wml  $(TEMPLDIR)/common_translation.wml: $(TEMPLDIR)/common_tags.wml
182  $(TEMPLDIR)/news.wml: $(TEMPLDIR)/basic.wml $(TEMPLDIR)/footer.wml \  $(TEMPLDIR)/consultant.wml: $(TEMPLDIR)/common_tags.wml \
183    $(TEMPLDIR)/languages.wml $(TEMPLDIR)/common_translation.wml \    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml
184    $(TEMPLDIR)/ctime.wml  $(TEMPLDIR)/countries.wml: $(TEMPLDIR)/common_tags.wml
185  $(TEMPLDIR)/consultant.wml: $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml \  $(TEMPLDIR)/countries_all.wml: $(TEMPLDIR)/countries.wml
186    $(TEMPLDIR)/footer.wml  $(TEMPLDIR)/ctime.wml: $(TEMPLDIR)/common_tags.wml
187  $(TEMPLDIR)/event.wml: $(TEMPLDIR)/footer.wml $(TEMPLDIR)/languages.wml \  $(TEMPLDIR)/ddp.wml: $(TEMPLDIR)/basic.wml \
188    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/events_common.wml    $(TEMPLDIR)/common_translation.wml $(TEMPLDIR)/languages.wml
189  $(TEMPLDIR)/past_event.wml: $(TEMPLDIR)/footer.wml $(TEMPLDIR)/languages.wml \  $(TEMPLDIR)/debian-cdd.wml: $(TEMPLDIR)/common_tags.wml \
190    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/events_common.wml    $(TEMPLDIR)/template.wml
191  ifndef SUBLANG  $(TEMPLDIR)/event.wml: $(TEMPLDIR)/events_common.wml \
192  $(TEMPLDIR)/navbar.wml: $(TEMPLDIR)/common_translation.wml \    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml
193    $(ENGLISHSRCDIR)/Pics/debian.jpg $(ENGLISHSRCDIR)/Pics/logo-50.jpg \  $(TEMPLDIR)/events_common.wml: $(TEMPLDIR)/common_translation.wml
194    $(ENGLISHSRCDIR)/Pics/red-upperleft.png $(ENGLISHSRCDIR)/Pics/red-upperright.png \  $(TEMPLDIR)/fixes_link.wml: $(TEMPLDIR)/common_tags.wml
195    $(ENGLISHSRCDIR)/Pics/red-lowerleft.png $(ENGLISHSRCDIR)/Pics/red-lowerright.png \  $(TEMPLDIR)/footer.wml: $(TEMPLDIR)/ctime.wml \
196    $(WMLBASE)/Pics/about.$(LANGUAGE).gif \    $(TEMPLDIR)/common_tags.wml
197    $(WMLBASE)/Pics/news.$(LANGUAGE).gif \  $(TEMPLDIR)/header.wml: $(TEMPLDIR)/common_translation.wml
198    $(WMLBASE)/Pics/distrib.$(LANGUAGE).gif \  $(TEMPLDIR)/installer.wml: $(TEMPLDIR)/release_data.wml
199    $(WMLBASE)/Pics/support.$(LANGUAGE).gif \  $(TEMPLDIR)/language_names.wml: $(TEMPLDIR)/common_tags.wml
200    $(WMLBASE)/Pics/devel.$(LANGUAGE).gif \  $(TEMPLDIR)/languages.wml: $(TEMPLDIR)/common_tags.wml \
201  #  $(WMLBASE)/Pics/sitemap.$(LANGUAGE).gif \    $(TEMPLDIR)/language_names.wml
202    $(WMLBASE)/Pics/search.$(LANGUAGE).gif  $(TEMPLDIR)/legal.wml: $(TEMPLDIR)/common_tags.wml \
203  else    $(TEMPLDIR)/common_translation.wml $(TEMPLDIR)/languages.wml \
204      $(TEMPLDIR)/ctime.wml $(TEMPLDIR)/submenu.wml \
205      $(TEMPLDIR)/legal_tags.wml $(TEMPLDIR)/basic.wml
206    $(TEMPLDIR)/legal_lists.wml: $(TEMPLDIR)/ctime.wml \
207      $(TEMPLDIR)/common_tags.wml $(TEMPLDIR)/legal_tags.wml
208    $(TEMPLDIR)/legal_tags.wml: $(TEMPLDIR)/common_tags.wml \
209      $(TEMPLDIR)/common_translation.wml
210    $(TEMPLDIR)/links.tags.wml: $(TEMPLDIR)/common_tags.wml
211    $(TEMPLDIR)/mainpage.wml: $(TEMPLDIR)/common_translation.wml \
212      $(TEMPLDIR)/basic.wml $(TEMPLDIR)/links.tags.wml \
213      $(TEMPLDIR)/languages.wml
214    $(TEMPLDIR)/mirrors.wml: $(TEMPLDIR)/countries.wml \
215      $(TEMPLDIR)/languages.wml $(TEMPLDIR)/common_tags.wml
216  $(TEMPLDIR)/navbar.wml: $(TEMPLDIR)/common_translation.wml \  $(TEMPLDIR)/navbar.wml: $(TEMPLDIR)/common_translation.wml \
217    $(ENGLISHSRCDIR)/Pics/debian.jpg $(ENGLISHSRCDIR)/Pics/logo-50.jpg \    $(TEMPLDIR)/mirrors.wml
218    $(ENGLISHSRCDIR)/Pics/red-upperleft.png $(ENGLISHSRCDIR)/Pics/red-upperright.png \  $(TEMPLDIR)/news.wml: $(TEMPLDIR)/common_translation.wml \
219    $(ENGLISHSRCDIR)/Pics/red-lowerleft.png $(ENGLISHSRCDIR)/Pics/red-lowerright.png \    $(TEMPLDIR)/common_tags.wml $(TEMPLDIR)/languages.wml \
220    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/about.$(LANGUAGE)-$(i).gif) \    $(TEMPLDIR)/ctime.wml $(TEMPLDIR)/basic.wml
221    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/news.$(LANGUAGE)-$(i).gif) \  $(TEMPLDIR)/past_event.wml: $(TEMPLDIR)/events_common.wml \
222    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/distrib.$(LANGUAGE)-$(i).gif) \    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml
223    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/support.$(LANGUAGE)-$(i).gif) \  $(TEMPLDIR)/recent_list.wml: $(TEMPLDIR)/ctime.wml \
224    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/devel.$(LANGUAGE)-$(i).gif) \    $(TEMPLDIR)/common_tags.wml $(TEMPLDIR)/legal_tags.wml
225  #  $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/sitemap.$(LANGUAGE)-$(i).gif) \  $(TEMPLDIR)/release.wml: $(TEMPLDIR)/languages.wml
226    $(foreach i,$(SUBLANG),$(WMLBASE)/Pics/search.$(LANGUAGE)-$(i).gif)  $(TEMPLDIR)/release_data.wml: $(TEMPLDIR)/common_tags.wml \
227  endif    $(TEMPLDIR)/ctime.wml
228  $(TEMPLDIR)/security.wml: $(TEMPLDIR)/common_translation.wml \  $(TEMPLDIR)/release_images.wml: $(TEMPLDIR)/installer.wml \
229    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/fixes_link.wml $(TEMPLDIR)/languages.wml \    $(TEMPLDIR)/release_data.wml
230    $(TEMPLDIR)/ctime.wml $(TEMPLDIR)/footer.wml  $(TEMPLDIR)/security.wml: $(TEMPLDIR)/common_tags.wml \
231  $(TEMPLDIR)/ddp.wml: $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml \    $(TEMPLDIR)/common_translation.wml $(TEMPLDIR)/fixes_link.wml \
232    $(TEMPLDIR)/footer.wml    $(TEMPLDIR)/languages.wml $(TEMPLDIR)/ctime.wml \
233  $(TEMPLDIR)/votebar.wml: $(TEMPLDIR)/footer.wml $(TEMPLDIR)/languages.wml \    $(TEMPLDIR)/securityreferences.wml $(TEMPLDIR)/basic.wml
234    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/common_translation.wml \  $(TEMPLDIR)/speakers.wml: $(TEMPLDIR)/common_tags.wml \
235    $(ENGLISHSRCDIR)/Pics/blue-upperleft.png $(ENGLISHSRCDIR)/Pics/blue-upperright.png \    $(TEMPLDIR)/basic.wml $(TEMPLDIR)/languages.wml
236    $(ENGLISHSRCDIR)/Pics/blue-lowerleft.png $(ENGLISHSRCDIR)/Pics/blue-lowerright.png  $(TEMPLDIR)/template.wml: $(TEMPLDIR)/basic.wml \
237  $(TEMPLDIR)/weeklynews/header.wml: $(TEMPLDIR)/ctime.wml \    $(TEMPLDIR)/languages.wml
238    $(TEMPLDIR)/template.wml $(TEMPLDIR)/links.tags.wml  $(TEMPLDIR)/todoitem.wml: $(TEMPLDIR)/common_tags.wml
239    $(TEMPLDIR)/translation-check.wml: $(TEMPLDIR)/languages.wml \
240      $(TEMPLDIR)/common_tags.wml
241    $(TEMPLDIR)/url.wml: $(TEMPLDIR)/common_tags.wml
242    $(TEMPLDIR)/votebar.wml: $(TEMPLDIR)/languages.wml \
243      $(TEMPLDIR)/common_tags.wml
244    $(TEMPLDIR)/wnpp.wml: $(TEMPLDIR)/common_tags.wml
245    $(TEMPLDIR)/weeklynews/footer.wml: $(TEMPLDIR)/common_tags.wml
246    $(TEMPLDIR)/weeklynews/header.wml: $(TEMPLDIR)/common_tags.wml \
247      $(TEMPLDIR)/ctime.wml $(TEMPLDIR)/links.tags.wml \
248      $(TEMPLDIR)/template.wml
249    
250    $(TEMPLDIR)/cdimage.wml: $(ENGLISHDIR)/Pics/debian.png \
251      $(ENGLISHSRCDIR)/logos/openlogo-nd-50.png \
252      $(ENGLISHDIR)/CD/pictures/menubar-tl.png \
253      $(ENGLISHDIR)/CD/pictures/menubar-tr.png \
254      $(ENGLISHDIR)/CD/pictures/menubar-bl.png \
255      $(ENGLISHDIR)/CD/pictures/menubar-br.png
256    # \
257    #  $(WMLBASE)/CD/pictures/menu-faq.$(LANGUAGE).png \
258    #  $(WMLBASE)/CD/pictures/menu-jigdo.$(LANGUAGE).png \
259    #  $(WMLBASE)/CD/pictures/menu-http-ftp.$(LANGUAGE).png \
260    #  $(WMLBASE)/CD/pictures/menu-buy.$(LANGUAGE).png \
261    #  $(WMLBASE)/CD/pictures/menu-misc.$(LANGUAGE).png \
262    #  $(WMLBASE)/CD/pictures/menu-netinst.$(LANGUAGE).png \
263    #  $(WMLBASE)/CD/pictures/menu-pik.$(LANGUAGE).png
264    
265    $(TEMPLDIR)/navbar.wml: $(ENGLISHSRCDIR)/Pics/debian.png \
266      $(ENGLISHSRCDIR)/logos/openlogo-nd-50.png
267    
268    $(TEMPLDIR)/todoitem.wml: $(ENGLISHSRCDIR)/Pics/star-grn.gif \
269      $(ENGLISHSRCDIR)/Pics/star-yel.gif \
270      $(ENGLISHSRCDIR)/Pics/star-red.gif
271    $(TEMPLDIR)/votebar.wml: $(ENGLISHSRCDIR)/Pics/blue-upperleft.png \
272      $(ENGLISHSRCDIR)/Pics/blue-upperright.png \
273      $(ENGLISHSRCDIR)/Pics/blue-lowerleft.png \
274      $(ENGLISHSRCDIR)/Pics/blue-lowerright.png
275    
276  .SUFFIXES:  .SUFFIXES:
277  .PHONY: all $(existing-SUBS) install $(existing-SUBS-install)  .PHONY: all $(existing-SUBS) install $(existing-SUBS-install)

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.91

  ViewVC Help
Powered by ViewVC 1.1.5