https://github.com/kripken/emscripten
Raw File
Tip revision: 21796195994dbcc04598eebc6cf351bd0e27f95f authored by Sam Clegg on 30 September 2021, 18:49:46 UTC
Fix deadlock when calling fflush during application shutdown
Tip revision: 2179619
Makefile
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
back to top