]> git.sesse.net Git - xml-template/blob - c++0x/Makefile
Split out the C++0x library into a separate file from the simple unit test.
[xml-template] / c++0x / Makefile
1 CXX=g++
2 CXXFLAGS=-std=gnu++0x -g -Wall $(shell xml2-config --cflags)
3 OBJS=simple.o xml-template.o
4
5 simple: $(OBJS)
6         $(CXX) -o $@ $(OBJS) $(shell xml2-config --libs)
7