summaryrefslogtreecommitdiffstats
path: root/ue5/Makefile
diff options
context:
space:
mode:
authormanuel <manuel@nc8430.lan>2009-06-03 15:00:12 +0200
committermanuel <manuel@nc8430.lan>2009-06-03 15:00:12 +0200
commite251dbf4e82efc3dcfe18f6d5d00ae3ce079d1bd (patch)
tree454e92a8e17a792fab9f98cc96239de3e0947ba2 /ue5/Makefile
parentdcd1c9a6e1fbb7462db67a15b9e0dfd22d4f6a4f (diff)
downloadooprog-e251dbf4e82efc3dcfe18f6d5d00ae3ce079d1bd.tar.gz
ooprog-e251dbf4e82efc3dcfe18f6d5d00ae3ce079d1bd.tar.bz2
ooprog-e251dbf4e82efc3dcfe18f6d5d00ae3ce079d1bd.zip
ue5
Diffstat (limited to 'ue5/Makefile')
-rw-r--r--ue5/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/ue5/Makefile b/ue5/Makefile
new file mode 100644
index 0000000..2c98aaa
--- /dev/null
+++ b/ue5/Makefile
@@ -0,0 +1,35 @@
1# Makefile for ue5
2# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348)
3# Created: 03.06.2009
4
5CXX= g++43
6LD= $(CXX)
7DEBUGFLAGS= -DNDEBUG
8CXXFLAGS= -O -std=c++0x -pedantic -Wall $(DEBUGFLAGS)
9LDFLAGS=
10
11BIN= c++0x
12OBJS= verwendung.o
13HEADERS= array.hpp mean_mark.hpp shared_ptr.hpp
14
15.SUFFIXES: .cpp .o
16
17all: $(BIN)
18
19.cpp.o:
20 $(CXX) $(CXXFLAGS) -c $< -o $@
21
22$(OBJS): $(HEADERS)
23
24$(BIN): $(OBJS)
25 $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
26
27debug:
28 @$(MAKE) all "DEBUGFLAGS=-DDEBUG -g"
29
30clean:
31 rm -f $(OBJS) $(BIN)
32
33.PHONY: clean
34
35# vim600: noet sw=8 ts=8