diff options
| -rw-r--r-- | ue2/imgsynth2/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ue2/imgsynth2/Makefile b/ue2/imgsynth2/Makefile index 376abac..3183b54 100644 --- a/ue2/imgsynth2/Makefile +++ b/ue2/imgsynth2/Makefile | |||
| @@ -2,10 +2,15 @@ | |||
| 2 | # Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) | 2 | # Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) |
| 3 | # Created: 26.04.2009 | 3 | # Created: 26.04.2009 |
| 4 | 4 | ||
| 5 | CC= g++ | 5 | CXX= g++ |
| 6 | LD= $(CC) | 6 | LD= $(CXX) |
| 7 | DEBUGFLAGS= -DNDEBUG | 7 | DEBUGFLAGS= -DNDEBUG |
| 8 | <<<<<<< local | ||
| 9 | INCLUDE_PATH= -I/usr/local/include | ||
| 10 | CXXFLAGS= -O -ansi -pedantic-errors -Wall $(INCLUDE_PATH) $(DEBUGFLAGS) | ||
| 11 | ======= | ||
| 8 | CFLAGS= -O -ansi -pedantic-errors -Wall -I/usr/local/include $(DEBUGFLAGS) | 12 | CFLAGS= -O -ansi -pedantic-errors -Wall -I/usr/local/include $(DEBUGFLAGS) |
| 13 | >>>>>>> other | ||
| 9 | LDFLAGS= | 14 | LDFLAGS= |
| 10 | LIBS= -L/usr/local/lib -lboost_program_options | 15 | LIBS= -L/usr/local/lib -lboost_program_options |
| 11 | 16 | ||
| @@ -20,7 +25,7 @@ HEADERS= cpixelformat.h cpixelformat_bgr24.h cpixelformat_bgr555.h \ | |||
| 20 | all: $(BIN) | 25 | all: $(BIN) |
| 21 | 26 | ||
| 22 | .cpp.o: | 27 | .cpp.o: |
| 23 | $(CC) $(CFLAGS) -c $< -o $@ | 28 | $(CXX) $(CXXFLAGS) -c $< -o $@ |
| 24 | 29 | ||
| 25 | $(OBJS): $(HEADERS) | 30 | $(OBJS): $(HEADERS) |
| 26 | 31 | ||
