summaryrefslogtreecommitdiffstats
path: root/xrdp/Makefile
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-12-02 03:24:41 +0000
committerjsorg71 <jsorg71>2005-12-02 03:24:41 +0000
commit58976ccc9747a9cea00fe3b2b8f8a71a2e292117 (patch)
tree18c5b9df6a781734129a18f5b7e29be17379ba7a /xrdp/Makefile
parent1203f776ce8875583fb6e08f9b8e9450ead68a23 (diff)
downloadxrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.tar.gz
xrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.zip
Makefile changes
Diffstat (limited to 'xrdp/Makefile')
-rw-r--r--xrdp/Makefile22
1 files changed, 20 insertions, 2 deletions
diff --git a/xrdp/Makefile b/xrdp/Makefile
index e1e52005..6efc891b 100644
--- a/xrdp/Makefile
+++ b/xrdp/Makefile
@@ -5,8 +5,16 @@ XRDPOBJ = xrdp.o xrdp_process.o xrdp_listen.o \
xrdp_login_wnd.o xrdp_interface.o \
list.o file.o os_calls.o thread_calls.o
-#CFLAGS = -Wall -O2 -I../common -I../libxrdp -DXRDP_DEBUG
-CFLAGS = -Wall -O2 -I../common -I../libxrdp
+DESTDIR = /usr/local/xrdp
+CFGDIR = /etc/xrdp
+PIDDIR = /var/run
+MANDIR = /usr/local/man
+DOCDIR = /usr/doc/xrdp
+
+DEFINES =
+
+CFLAGS = -Wall -O2 -I../common -I../libxrdp $(DEFINES)
+#CFLAGS += -DXRDP_DEBUG
C_OS_FLAGS = $(CFLAGS) -c
LDFLAGS = -L/usr/gnu/lib -L../libxrdp -Wl,-rpath,.
LIBS = -ldl -lpthread -lxrdp
@@ -21,6 +29,16 @@ xrdp: $(XRDPOBJ)
clean:
rm -f $(XRDPOBJ) xrdp
+install:
+ install ad256.bmp $(DESTDIR)/ad256.bmp
+ install xrdp256.bmp $(DESTDIR)/xrdp256.bmp
+ install cursor0.cur $(DESTDIR)/cursor0.cur
+ install cursor1.cur $(DESTDIR)/cursor1.cur
+ install Tahoma-10.fv1 $(DESTDIR)/Tahoma-10.fv1
+ install xrdp.ini $(CFGDIR)/xrdp.ini
+ install xrdpstart.sh $(DESTDIR)/xrdpstart.sh
+ install rsakeys.ini $(CFGDIR)/rsakeys.ini
+
list.o:
$(CC) $(C_OS_FLAGS) ../common/list.c