]> git.sesse.net Git - xml-template/blobdiff - c++0x/Makefile
Add include support, and unit test, to C++0x version. All unit tests pass!
[xml-template] / c++0x / Makefile
index 939c74828cb853beb0c401397c7140a6c8d6844d..9c7cef95cee166e6594005229c18e9e53c47a0f9 100644 (file)
@@ -11,3 +11,27 @@ simple: simple.o $(LIBS)
 
 clone: clone.o $(LIBS)
        $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+include: include.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+attribute: attribute.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+attribute2: attribute2.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+attribute3: attribute3.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+attribute-empty: attribute-empty.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+namespace: namespace.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+namespace2: namespace2.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
+
+structure: structure.o $(LIBS)
+       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)