output actual characters instead of codepoints
[evolve-layout.git] / C / Makefile
blob2e4f90cd4082d81f195b0452e4228aa122a90441
1 CC=g++
2 FLAGS=-Wall
3 INC=-I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
4 LIB=-lglibmm-2.4
6 create_dummy_file: create_dummy_file.cpp
7 $(CC) $(FLAGS) $(INC) $(LIB) $< -o $@
9 recheck_layouts: recheck_layouts.cpp File.cpp Layout.cpp
10 g++ -Wall $< -o $@
12 all: recheck_all_result_layouts
14 .PHONY: all