diff options
Diffstat (limited to 'ue5/Makefile')
| -rw-r--r-- | ue5/Makefile | 35 |
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 | |||
| 5 | CXX= g++43 | ||
| 6 | LD= $(CXX) | ||
| 7 | DEBUGFLAGS= -DNDEBUG | ||
| 8 | CXXFLAGS= -O -std=c++0x -pedantic -Wall $(DEBUGFLAGS) | ||
| 9 | LDFLAGS= | ||
| 10 | |||
| 11 | BIN= c++0x | ||
| 12 | OBJS= verwendung.o | ||
| 13 | HEADERS= array.hpp mean_mark.hpp shared_ptr.hpp | ||
| 14 | |||
| 15 | .SUFFIXES: .cpp .o | ||
| 16 | |||
| 17 | all: $(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 | |||
| 27 | debug: | ||
| 28 | @$(MAKE) all "DEBUGFLAGS=-DDEBUG -g" | ||
| 29 | |||
| 30 | clean: | ||
| 31 | rm -f $(OBJS) $(BIN) | ||
| 32 | |||
| 33 | .PHONY: clean | ||
| 34 | |||
| 35 | # vim600: noet sw=8 ts=8 | ||
