mirror of
https://github.com/pruten/shoebill.git
synced 2025-01-22 16:30:27 +00:00
17 lines
313 B
Makefile
17 lines
313 B
Makefile
|
|
||
|
CC = clang
|
||
|
CFLAGS = -O4 -arch x86_64 -Wno-deprecated-declarations
|
||
|
LFLAGS = -framework OpenGL -framework GLUT
|
||
|
|
||
|
all: shoebill
|
||
|
|
||
|
shoebill: make_core test.c
|
||
|
$(CC) $(LFLAGS) $(CFLAGS) -L intermediates -l shoebill_core test.c -o shoebill
|
||
|
|
||
|
make_core:
|
||
|
$(MAKE) -C core -j 4
|
||
|
|
||
|
clean:
|
||
|
rm -rf intermediates
|
||
|
rm -f shoebill
|