WxWidgets用のMakefile

ワイルドカードを使うと便利に書ける。
http://urin.github.io/posts/2013/simple-makefile-for-clang/
WxWidgets自体はbrew install wxmacでインストールしている。

COMPILE = g++  
LIBS = `wx-config --libs` 
FLAGS = `wx-config --cxxflags`
SOURCE = *.cpp
OBJ = $(SOURCE:.cpp=.o)
all: $(OBJ)
    $(COMPILE) $(LIBS) $(FLAGS) -o main $(OBJ)
.cpp.o:
    $(COMPILE) $(LIBS) $(FLAGS) -c $< -o $@