]> git.sesse.net Git - xml-template/blobdiff - c++0x/Makefile
Rename C++0x port to C++11, since that will be the official name.
[xml-template] / c++0x / Makefile
diff --git a/c++0x/Makefile b/c++0x/Makefile
deleted file mode 100644 (file)
index bc6b07f..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-CXX=g++
-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)
-
-simple: simple.o $(LIBS)
-       $(CXX) -o $@ $< $(LIBS) $(LDFLAGS)
-
-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)