shoebill/Makefile

18 lines
348 B
Makefile
Raw Normal View History

2014-02-24 22:14:52 +00:00
CC = clang
CFLAGS = -O3 -arch i386 -arch x86_64 -Wno-deprecated-declarations
2014-02-24 22:14:52 +00:00
LFLAGS = -framework OpenGL -framework GLUT
all: shoebill
shoebill: make_core
# shoebill: make_core test.c
# $(CC) $(LFLAGS) $(CFLAGS) -L intermediates -l shoebill_core test.c -o shoebill
2014-02-24 22:14:52 +00:00
make_core:
$(MAKE) -C core -j 4
clean:
rm -rf intermediates
rm -f shoebill