summaryrefslogtreecommitdiffstats
path: root/ue2/imgsynth2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ue2/imgsynth2/Makefile')
-rw-r--r--ue2/imgsynth2/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/ue2/imgsynth2/Makefile b/ue2/imgsynth2/Makefile
index cbf3d33..d8f3372 100644
--- a/ue2/imgsynth2/Makefile
+++ b/ue2/imgsynth2/Makefile
@@ -5,15 +5,16 @@
5CC= g++ 5CC= g++
6LD= $(CC) 6LD= $(CC)
7DEBUGFLAGS= -DNDEBUG 7DEBUGFLAGS= -DNDEBUG
8CFLAGS= -O -ansi -pedantic-errors -Wall $(DEBUGFLAGS) 8#TODO CFLAGS= -O -ansi -pedantic-errors -Wall -I/usr/local/include $(DEBUGFLAGS)
9CFLAGS= -O -ansi -Wall -I/usr/local/include $(DEBUGFLAGS)
9LDFLAGS= 10LDFLAGS=
10LIBS= -lboost_program_options 11LIBS= -L/usr/local/lib -lboost_program_options
11 12
12BIN= imgsynth2 13BIN= imgsynth2
13OBJS= cpixelformat_bgr24.o cpixelformat_bgr555.o \ 14OBJS= cpixelformat_bgr24.o cpixelformat_bgr555.o \
14 cbitmap.o cscriptparser.o imgsynth2.o 15 cwindowsbitmap.o cbitmap.o cscriptparser.o imgsynth2.o
15HEADERS= cpixelformat.h cpixelformat_bgr24.h cpixelformat_bgr555.h \ 16HEADERS= cpixelformat.h cpixelformat_bgr24.h cpixelformat_bgr555.h \
16 cfile.h cbitmap.h cscriptparser.h 17 cfile.h cbitmap.h cwindowsbitmap.h cscriptparser.h
17 18
18.SUFFIXES: .cpp .o 19.SUFFIXES: .cpp .o
19 20