mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
23 lines
337 B
Makefile
23 lines
337 B
Makefile
|
|
SRC = $(shell find lib -name "*.js" -type f)
|
|
UGLIFY_FLAGS = --no-mangle
|
|
|
|
all: ejs.min.js
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--reporter spec
|
|
|
|
ejs.js: $(SRC)
|
|
@node support/compile.js $^
|
|
|
|
ejs.min.js: ejs.js
|
|
@uglifyjs $(UGLIFY_FLAGS) $< > $@ \
|
|
&& du ejs.min.js \
|
|
&& du ejs.js
|
|
|
|
clean:
|
|
rm -f ejs.js
|
|
rm -f ejs.min.js
|
|
|
|
.PHONY: test |