8 lines
229 B
Makefile
8 lines
229 B
Makefile
CC=clang
|
|
CXX=clang++
|
|
CPPFLAGS:=$(CPPFLAGS) -D __MACOSX_CORE__
|
|
LDLIBS:=-framework CoreMIDI -framework CoreAudio -framework CoreFoundation $(LDLIBS)
|
|
Release_Obj=$(addprefix bin/,$(Obj))
|
|
Bestline=bin/$(os)/bestline.o
|
|
Target=musique
|