Skip to content

Instantly share code, notes, and snippets.

View Daft-Freak's full-sized avatar
🧙

Charlie Birks Daft-Freak

🧙
View GitHub Profile
@Daft-Freak
Daft-Freak / Makefile
Last active August 29, 2015 14:21 — forked from whistlegraph/Makefile
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