# 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) run test: all @./test/test.sh .PHONY: clean # vim600: noet sw=8 ts=8