gameui

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/themes/simple/Makefile	Sat Mar 22 01:50:01 2014 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +src = $(wildcard *.cc)
     1.5 +obj = $(src:.cc=.o)
     1.6 +lib_so = simple.so
     1.7 +
     1.8 +CXXFLAGS = -pedantic -Wall -g -I../../include
     1.9 +
    1.10 +$(lib_so): $(obj)
    1.11 +	$(CXX) -o $@ -shared $(obj) $(LDFLAGS)
    1.12 +
    1.13 +.PHONY: clean
    1.14 +clean:
    1.15 +	rm -f $(obj) $(bin)