miniflux-legacy/Makefile

58 lines
1.3 KiB
Makefile
Raw Normal View History

.PHONY: archive
.PHONY: docker-image
.PHONY: js
.PHONY: unit-test-sqlite
2016-12-26 21:07:18 +01:00
.PHONY: unit-test-postgres
.PHONY: unit-test-mysql
2016-12-29 02:52:58 +01:00
.PHONY: sync-locales
.PHONY: find-locales
2017-01-03 01:44:13 +01:00
CSS_FILE = assets/css/app.min.css
JS_FILE = assets/js/app.min.js
IMAGE = miniflux/miniflux
TAG = latest
docker-image:
2017-12-02 03:19:26 +01:00
@ ./hooks/build
2017-01-03 01:44:13 +01:00
css: $(CSS_FILE)
$(CSS_FILE): assets/css/app.css
2017-12-02 03:19:26 +01:00
@ npm install
2017-01-03 01:44:13 +01:00
@ cat $^ | ./node_modules/.bin/cleancss -o $@
js: $(JS_FILE)
$(JS_FILE): assets/js/src/app.js \
assets/js/src/feed.js \
assets/js/src/item.js \
assets/js/src/event.js \
assets/js/src/nav.js
@ yarn install || npm install
@ ./node_modules/.bin/jshint assets/js/src/*.js
@ cat $^ | node_modules/.bin/uglifyjs - > $@
@ echo "Miniflux.App.Run();" >> $@
# Build a new archive: make archive version=1.2.3 dst=/tmp
archive:
@ git archive --format=zip --prefix=miniflux/ v${version} -o ${dst}/miniflux-${version}.zip
2016-12-29 21:45:09 +01:00
functional-test-sqlite:
@ rm -f data/db.sqlite
@ ./vendor/bin/phpunit -c tests/phpunit.functional.sqlite.xml
unit-test-sqlite:
2016-12-26 21:07:18 +01:00
@ ./vendor/bin/phpunit -c tests/phpunit.unit.sqlite.xml
unit-test-postgres:
@ ./vendor/bin/phpunit -c tests/phpunit.unit.postgres.xml
unit-test-mysql:
@ ./vendor/bin/phpunit -c tests/phpunit.unit.mysql.xml
2016-12-29 02:52:58 +01:00
sync-locales:
@ php scripts/sync-locales.php
find-locales:
@ php scripts/find-locales.php