# Makefile for web audio wasm example
#
# Roger B. Dannenberg
# Oct 2023

all: web web/test.html

web:
	mkdir -p web

web/test.html:
	em++ audioworklet.c -s ENVIRONMENT='web','worker' -sAUDIO_WORKLET=1 -sWASM_WORKERS=1 -o web/test.html
