16 lines
475 B
Makefile
16 lines
475 B
Makefile
ifneq ($(os),windows)
|
|
Release_Obj=$(addprefix bin/,$(Obj))
|
|
|
|
bin/bestline.o: lib/bestline/bestline.c lib/bestline/bestline.h
|
|
@echo "CC $@"
|
|
@$(CC) $< -c -O3 -o $@
|
|
|
|
bin/%.o: musique/%.cc
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $< -c
|
|
|
|
bin/musique: $(Release_Obj) bin/main.o bin/rtmidi.o bin/bestline.o
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $(Release_Obj) bin/rtmidi.o bin/bestline.o $(LDFLAGS) $(LDLIBS)
|
|
endif
|