summaryrefslogtreecommitdiffstats
path: root/mesgdisp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'mesgdisp/Makefile')
-rw-r--r--mesgdisp/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/mesgdisp/Makefile b/mesgdisp/Makefile
new file mode 100644
index 0000000..9eea0d7
--- /dev/null
+++ b/mesgdisp/Makefile
@@ -0,0 +1,13 @@
+CC=g++
+LIBS=-lXinerama -lXi -lXrender -lXft ../fltk-2/lib/libfltk2.a -I../fltk-2/include/
+
+TARGET=mesgdisp
+SRC=$(wildcard *.cxx)
+
+all: MessageWindow.cxx
+ $(CC) -o $(TARGET) $(SRC) $(LIBS)
+ strip $(TARGET)
+
+install: all
+ cp $(TARGET) ../../../../openslx/trunk/os-plugins/plugins/vmchooser/files/
+