summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-06-04 23:51:51 +0000
committerjsorg71 <jsorg71>2005-06-04 23:51:51 +0000
commit74a67d2d3f9fd1e4e120373e49e6b02858d92bb9 (patch)
tree67eed529006be30b659e3571fb9adb57d66a3b66 /Makefile
parent86ecad1197c04520d98ac62a8906e7b55a8b6e8d (diff)
downloadxrdp-proprietary-74a67d2d3f9fd1e4e120373e49e6b02858d92bb9.tar.gz
xrdp-proprietary-74a67d2d3f9fd1e4e120373e49e6b02858d92bb9.zip
added non pam authentication
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..239f7d64
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+
+DESTDIR = /usr/local/xrdp
+
+all: world
+
+world:
+ make -C vnc
+ make -C xrdp
+ make -C sesman
+
+clean:
+ make -C vnc clean
+ make -C xrdp clean
+ make -C sesman clean
+
+install:
+ mkdir -p $(DESTDIR)
+ install xrdp/xrdp $(DESTDIR)/xrdp
+ install xrdp/ad256.bmp $(DESTDIR)/ad256.bmp
+ install xrdp/xrdp256.bmp $(DESTDIR)/xrdp256.bmp
+ install xrdp/cursor0.cur $(DESTDIR)/cursor0.cur
+ install xrdp/cursor1.cur $(DESTDIR)/cursor1.cur
+ install xrdp/Tahoma-10.fv1 $(DESTDIR)/Tahoma-10.fv1
+ install vnc/libvnc.so $(DESTDIR)/libvnc.so
+ install sesman/sesman $(DESTDIR)/sesman
+ install instfiles/sesman.ini $(DESTDIR)/sesman.ini
+ install instfiles/startwm.sh $(DESTDIR)/startwm.sh
+ install instfiles/xrdp.ini $(DESTDIR)/xrdp.ini
+ install instfiles/xrdpstart.sh $(DESTDIR)/xrdpstart.sh