From e251dbf4e82efc3dcfe18f6d5d00ae3ce079d1bd Mon Sep 17 00:00:00 2001 From: manuel Date: Wed, 3 Jun 2009 15:00:12 +0200 Subject: ue5 --- ue5/Makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 ue5/Makefile (limited to 'ue5/Makefile') diff --git a/ue5/Makefile b/ue5/Makefile new file mode 100644 index 0000000..2c98aaa --- /dev/null +++ b/ue5/Makefile @@ -0,0 +1,35 @@ +# Makefile for ue5 +# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) +# Created: 03.06.2009 + +CXX= g++43 +LD= $(CXX) +DEBUGFLAGS= -DNDEBUG +CXXFLAGS= -O -std=c++0x -pedantic -Wall $(DEBUGFLAGS) +LDFLAGS= + +BIN= c++0x +OBJS= verwendung.o +HEADERS= array.hpp mean_mark.hpp shared_ptr.hpp + +.SUFFIXES: .cpp .o + +all: $(BIN) + +.cpp.o: + $(CXX) $(CXXFLAGS) -c $< -o $@ + +$(OBJS): $(HEADERS) + +$(BIN): $(OBJS) + $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + +debug: + @$(MAKE) all "DEBUGFLAGS=-DDEBUG -g" + +clean: + rm -f $(OBJS) $(BIN) + +.PHONY: clean + +# vim600: noet sw=8 ts=8 -- cgit v1.2.3