summaryrefslogtreecommitdiffstats
path: root/vmchooser/Makefile
diff options
context:
space:
mode:
authorBastian Wissler2009-04-02 17:45:49 +0200
committerBastian Wissler2009-04-02 17:45:49 +0200
commit19a7589eab90fc4f0df10ffd13537038c5e0e1d3 (patch)
tree45b3d826fa23ba833213b119b3c05c9e436a8087 /vmchooser/Makefile
parentvmchooser source: (diff)
downloadvmchooser-19a7589eab90fc4f0df10ffd13537038c5e0e1d3.tar.gz
vmchooser-19a7589eab90fc4f0df10ffd13537038c5e0e1d3.tar.xz
vmchooser-19a7589eab90fc4f0df10ffd13537038c5e0e1d3.zip
vmchoooser source + libs:
* added various fixes to vmchooser sources * changed default printer.sh and scanner.sh path to /etc/opt/openslx * imported missing libraries (fltk+libxml2 soft ignored from svn) git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2790 95ad53e4-c205-0410-b2fa-d234c58c8868
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 $< > $@