Codebase list emscripten / a224b0bd-44e3-47ce-9a7c-a850a17b103b/main Makefile
a224b0bd-44e3-47ce-9a7c-a850a17b103b/main

Tree @a224b0bd-44e3-47ce-9a7c-a850a17b103b/main (Download .tar.gz)

Makefile @a224b0bd-44e3-47ce-9a7c-a850a17b103b/mainraw · history · blame

VERSION = $(shell cat emscripten-version.txt | sed s/\"//g)
DESTDIR ?= ../emscripten-$(VERSION)
DISTFILE = emscripten-$(VERSION).tar.bz2

dist: $(DISTFILE)

install:
	@rm -rf $(DESTDIR)
	./tools/install.py $(DESTDIR)
	npm install --prefix $(DESTDIR)

# Create an distributable archive of emscripten suitable for use
# by end users. This archive excludes node_modules as it can include native
# modules which can't be safely pre-packaged.
$(DISTFILE): install
	tar cf $@ --exclude=node_modules -C `dirname $(DESTDIR)` `basename $(DESTDIR)`

.PHONY: dist install