shoebill/Makefile

20 lines
299 B
Makefile
Raw Normal View History

2014-02-24 22:14:52 +00:00
CC = clang
CFLAGS = -O3 -flto -Wno-deprecated-declarations
2014-02-24 22:14:52 +00:00
all: shoebill
shoebill: make_gui debugger
make_gui: make_core
xcodebuild -project gui/Shoebill.xcodeproj SYMROOT=build
2014-02-24 22:14:52 +00:00
debugger: make_core
$(MAKE) -C debugger
2014-02-24 22:14:52 +00:00
make_core:
$(MAKE) -C core -j 4
clean:
rm -rf intermediates gui/build