mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
11 lines
251 B
Makefile
11 lines
251 B
Makefile
JS = $(shell find . -name '*.js' -print)
|
|
|
|
all: menu.html
|
|
|
|
menu.html: menuhead.html menufoot.html $(JS) Makefile
|
|
exec perl mklistpage.pl > menubody.html
|
|
cat menuhead.html menubody.html menufoot.html > menu.html
|
|
|
|
clean:
|
|
rm -f menubody.html menu.html
|