summaryrefslogtreecommitdiffstats
path: root/vmchooser/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vmchooser/Makefile')
-rw-r--r--vmchooser/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmchooser/Makefile b/vmchooser/Makefile
index 4e3cbc5..4531c8f 100644
--- a/vmchooser/Makefile
+++ b/vmchooser/Makefile
@@ -6,7 +6,7 @@ XDEPS := $(wildcard ${DEPS})
CC = g++
DEBUG_CCFLAGS = -O0 -Wall -I/usr/include -I../fltk/ -I. -I../libxml2/include -ggdb #-ggdb #-Werror
-CCFLAGS = -O2 -Wall -I/usr/include -I../fltk/ -I../libxml2/include/
+CCFLAGS = -O2 -Wall -I/usr/include -I../fltk/ -I. -I../libxml2/include/
LDFLAGS = -L/usr/lib
LIBS = -lpng ../fltk/lib/libfltk2_images.a -ljpeg -lz -lXi -lXinerama -lpthread -lm -lXext -lsupc++ -lXrender -lfontconfig -lXft -lXdmcp -lXau -ldl -lz -lfreetype -lX11 ../libxml2/libs/libxml2.a ../fltk/lib/libfltk2.a /usr/lib/libboost_regex-s.a /usr/lib/libboost_filesystem-s.a
@@ -25,7 +25,7 @@ debug: ${OBJS}
${CC} ${LDFLAGS} -o vmchooserdbg $^ ${LIBS}
${OBJS}: %.o: %.cxx %.dep
- ${CC} ${DEBUG_CCFLAGS} -o $@ -c $<
+ ${CC} ${CCFLAGS} -o $@ -c $<
${DEPS}: %.dep: %.cxx Makefile
${CC} ${CCFLAGS} -MM $< > $@