diff options
author | jsorg71 <jsorg71> | 2005-12-02 03:24:41 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-12-02 03:24:41 +0000 |
commit | 58976ccc9747a9cea00fe3b2b8f8a71a2e292117 (patch) | |
tree | 18c5b9df6a781734129a18f5b7e29be17379ba7a /libxrdp/Makefile | |
parent | 1203f776ce8875583fb6e08f9b8e9450ead68a23 (diff) | |
download | xrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.tar.gz xrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.zip |
Makefile changes
Diffstat (limited to 'libxrdp/Makefile')
-rw-r--r-- | libxrdp/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/libxrdp/Makefile b/libxrdp/Makefile index 437b2af3..097785d7 100644 --- a/libxrdp/Makefile +++ b/libxrdp/Makefile @@ -1,10 +1,18 @@ - +# libxrdp makefile LIBXRDPOBJ = libxrdp.o xrdp_tcp.o xrdp_iso.o xrdp_mcs.o \ xrdp_sec.o xrdp_rdp.o xrdp_orders.o \ xrdp_bitmap_compress.o \ os_calls.o ssl_calls.o file.o -CFLAGS = -Wall -O2 -I../common -fPIC +DESTDIR = /usr/local/xrdp +CFGDIR = /etc/xrdp +PIDDIR = /var/run +MANDIR = /usr/local/man +DOCDIR = /usr/doc/xrdp + +DEFINES = + +CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES) C_OS_FLAGS = $(CFLAGS) -c LDFLAGS = -shared LIBS = -ldl @@ -24,6 +32,9 @@ libxrdp: $(LIBXRDPOBJ) clean: rm -f $(LIBXRDPOBJ) libxrdp.a libxrdp.so +install: + install libxrdp.so $(DESTDIR)/libxrdp.so + file.o: $(CC) $(C_OS_FLAGS) ../common/file.c |