From 052b584d7b60fd9be246d3fcf8bdefdead60d35c Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Thu, 22 Sep 2011 02:13:08 +0200 Subject: [PATCH] Add all and clean targets to C++0x makefile. --- c++0x/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/c++0x/Makefile b/c++0x/Makefile index 9c7cef9..bc6b07f 100644 --- a/c++0x/Makefile +++ b/c++0x/Makefile @@ -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) -- 2.39.2