Browse Source

Makefile: keep compiler.jar, --create-spdx

Keeping compiler.jar means that if you once "make dist-src-official"
or "make compiler.jar", "make dist" will then closure-minify further
builds.
pull/398/head
Sami Vaarala 9 years ago
parent
commit
de34db7f9c
  1. 2
      Makefile

2
Makefile

@ -1016,7 +1016,7 @@ cloc: dist cloc-1.60.pl
# XXX: make prints a harmless warning related to the sub-make.
dist:
@make codepolicycheck
if [ -f compiler.jar ]; then sh util/make_dist.sh --minify closure; else sh util/make_dist.sh --minify none; fi
if [ -f compiler.jar ]; then sh util/make_dist.sh --minify closure --create-spdx; else sh util/make_dist.sh --minify none --create-spdx; fi
.PHONY: dist-src
dist-src: dist

Loading…
Cancel
Save