]> git.sesse.net Git - xml-template/blob - c++0x/Makefile
Use a LDFLAGS variable.
[xml-template] / c++0x / Makefile
1 CXX=g++
2 CXXFLAGS=-std=gnu++0x -g -Wall $(shell xml2-config --cflags)
3 LDFLAGS=$(shell xml2-config --libs)
4 OBJS=simple.o xml-template.o
5
6 simple: $(OBJS)
7         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
8