Skip to content

Instantly share code, notes, and snippets.

@whistlegraph
whistlegraph / Makefile
Last active March 16, 2017 19:53 — forked from anonymous/ios-audio.c
SDL2 Emscripten Audio Test (for iOS)
OBJS = ios-audio.c
OBJ_NAME = "ios-audio"
mac:
mkdir -p builds/native/mac
gcc -Wall -o $(OBJ_NAME) $(OBJS) `sdl2-config --cflags --libs`;
mv $(OBJ_NAME) builds/native/mac
web:
mkdir -p builds/html