gameui

view themes/simple/Makefile @ 5:5a84873185ff

rudimentary theme plugin system and other minor fixes
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 22 Mar 2014 01:50:01 +0200
parents
children
line source
1 src = $(wildcard *.cc)
2 obj = $(src:.cc=.o)
3 lib_so = simple.so
5 CXXFLAGS = -pedantic -Wall -g -I../../include
7 $(lib_so): $(obj)
8 $(CXX) -o $@ -shared $(obj) $(LDFLAGS)
10 .PHONY: clean
11 clean:
12 rm -f $(obj) $(bin)