]> git.sesse.net Git - xml-template/blob - c++0x/Makefile
Add attribute-empty test for C++0x, which passes.
[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 LIBS=xml-template.o
5
6 passthru: passthru.o $(LIBS)
7         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
8
9 simple: simple.o $(LIBS)
10         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
11
12 clone: clone.o $(LIBS)
13         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
14
15 attribute: attribute.o $(LIBS)
16         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
17
18 attribute2: attribute2.o $(LIBS)
19         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
20
21 attribute3: attribute3.o $(LIBS)
22         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
23
24 attribute-empty: attribute-empty.o $(LIBS)
25         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
26
27 namespace: namespace.o $(LIBS)
28         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
29
30 namespace2: namespace2.o $(LIBS)
31         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
32
33 structure: structure.o $(LIBS)
34         $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)