mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
14 lines
298 B
Makefile
14 lines
298 B
Makefile
# -*- Makefile -*-
|
|
|
|
TEST_JS = $(shell find . -name '*.js' -print)
|
|
|
|
all: menu.html
|
|
|
|
menu.html: menuhead.html menufoot.html Makefile spidermonkey-n.tests $(TEST_JS)
|
|
perl mklistpage.pl > menubody.html
|
|
cat menuhead.html menubody.html menufoot.html > menu.html
|
|
|
|
clean:
|
|
rm -f menubody.html menu.html
|
|
|