]> git.sesse.net Git - xml-template/blobdiff - c++0x/Makefile
Merge.
[xml-template] / c++0x / Makefile
index 837cb06780733ff353f328f7696d17c426ac73f7..bc6b07f7a7ce5adf648eabeca6d7e916f546b150 100644 (file)
@@ -3,6 +3,14 @@ CXXFLAGS=-std=gnu++0x -g -Wall $(shell xml2-config --cflags)
 LDFLAGS=$(shell xml2-config --libs)
 LIBS=xml-template.o
 
+BINS=passthru simple clone include attribute attribute2 attribute3 attribute-empty namespace namespace2 structure
+OBJS=passthru.o simple.o clone.o include.o attribute.o attribute2.o attribute3.o attribute-empty.o namespace.o namespace2.o structure.o xml-template.o
+
+all: $(BINS)
+
+clean:
+       $(RM) $(BINS) $(OBJS)
+
 passthru: passthru.o $(LIBS)
        $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
 
@@ -12,6 +20,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 +32,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)