]> 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 837cb06780733ff353f328f7696d17c426ac73f7..9c7cef95cee166e6594005229c18e9e53c47a0f9 100644 (file)
@@ -12,6 +12,9 @@ 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)
 
@@ -21,6 +24,9 @@ attribute2: attribute2.o $(LIBS)
 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)