summaryrefslogtreecommitdiffstats
path: root/vmchooser/Makefile
diff options
context:
space:
mode:
authorBastian Wissler2009-06-11 14:34:28 +0200
committerBastian Wissler2009-06-11 14:34:28 +0200
commit307a3dd1d885eacf1d910d04505f7b9f404dac53 (patch)
treed9bc0529634aedabd5bb11f35e561b9262f54656 /vmchooser/Makefile
parentvmchooser update: (diff)
downloadvmchooser-307a3dd1d885eacf1d910d04505f7b9f404dac53.tar.gz
vmchooser-307a3dd1d885eacf1d910d04505f7b9f404dac53.tar.xz
vmchooser-307a3dd1d885eacf1d910d04505f7b9f404dac53.zip
vmchooser:
* Now supports reading from /etc/opt/openslx/vmchooser-stage3.conf for the xml filter path * new binary included * changed make system to CMake to support better platform specific handling -> in the past different boost libraries had to be changed in the makefile * Closes Feature Request #429 git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2947 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'vmchooser/Makefile')
-rw-r--r--vmchooser/Makefile39
1 files changed, 0 insertions, 39 deletions
diff --git a/vmchooser/Makefile b/vmchooser/Makefile
deleted file mode 100644
index a44aa19..0000000
--- a/vmchooser/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-TARGET := vmchooser
-SRCS := $(wildcard *.cxx)
-OBJS := ${SRCS:.cxx=.o}
-DEPS := ${SRCS:.cxx=.dep}
-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. -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 /usr/lib/libboost_system-s.a
-
-.PHONY: all clean distclean
-all:: ${TARGET}
-
-ifneq (${XDEPS},)
-include ${XDEPS}
-endif
-
-${TARGET}: ${OBJS}
- ${CC} ${LDFLAGS} -o $@ $^ ${LIBS}
- strip $@
-
-debug: ${OBJS}
- ${CC} ${LDFLAGS} -o vmchooserdbg $^ ${LIBS}
-
-${OBJS}: %.o: %.cxx %.dep
- ${CC} ${CCFLAGS} -o $@ -c $<
-
-${DEPS}: %.dep: %.cxx Makefile
- ${CC} ${CCFLAGS} -MM $< > $@
-
-clean::
- rm -f *~ *.o ${TARGET} vmchooserdbg
-
-install:
- cp vmchooser ../../../../openslx/trunk/os-plugins/plugins/vmchooser/files/
-
-distclean:: clean