diff options
author | jsorg71 <jsorg71> | 2008-04-30 05:29:52 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-04-30 05:29:52 +0000 |
commit | d9123b847ac79784cd7d8bf1b9d878ff3688ae50 (patch) | |
tree | f9c7be20dcd184ca33fd72aa378fef45f4fcfe1f /rdp | |
parent | 75e5cb1e734f6315d10701e8fec2046d112c2ebb (diff) | |
download | xrdp-proprietary-d9123b847ac79784cd7d8bf1b9d878ff3688ae50.tar.gz xrdp-proprietary-d9123b847ac79784cd7d8bf1b9d878ff3688ae50.zip |
change xrdp file install locations
Diffstat (limited to 'rdp')
-rw-r--r-- | rdp/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/rdp/Makefile b/rdp/Makefile index 4c059fcd..6ffbcb52 100644 --- a/rdp/Makefile +++ b/rdp/Makefile @@ -1,12 +1,9 @@ # librdp makefile + RDPOBJ = ssl_calls.o os_calls.o rdp.o rdp_tcp.o rdp_iso.o rdp_mcs.o rdp_sec.o \ rdp_orders.o rdp_bitmap.o rdp_rdp.o rdp_lic.o -DESTDIR = /usr/local/xrdp -CFGDIR = /etc/xrdp -PIDDIR = /var/run -MANDIR = /usr/local/man -DOCDIR = /usr/doc/xrdp +LIBDIR = /usr/local/lib/xrdp DEFINES = @@ -33,7 +30,4 @@ ssl_calls.o: ../common/ssl_calls.c $(CC) $(C_OS_FLAGS) ../common/ssl_calls.c install: - install librdp.so $(DESTDIR)/librdp.so - -installdeb: - install librdp.so $(DESTDIRDEB)/usr/lib/xrdp/librdp.so + install librdp.so $(LIBDIR)/librdp.so |