summaryrefslogtreecommitdiffstats
path: root/vmchooser/Makefile
diff options
context:
space:
mode:
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