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 /vnc/Makefile | |
parent | 1203f776ce8875583fb6e08f9b8e9450ead68a23 (diff) | |
download | xrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.tar.gz xrdp-proprietary-58976ccc9747a9cea00fe3b2b8f8a71a2e292117.zip |
Makefile changes
Diffstat (limited to 'vnc/Makefile')
-rw-r--r-- | vnc/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/vnc/Makefile b/vnc/Makefile index a37edd88..cd9df297 100644 --- a/vnc/Makefile +++ b/vnc/Makefile @@ -1,6 +1,15 @@ - +# libvnc makefile VNCOBJ = vnc.o os_calls.o d3des.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 @@ -19,3 +28,7 @@ os_calls.o: d3des.o: $(CC) $(C_OS_FLAGS) ../common/d3des.c + +install: + install libvnc.so $(DESTDIR)/libvnc.so + |