diff options
author | jsorg71 <jsorg71> | 2007-09-27 18:09:29 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-09-27 18:09:29 +0000 |
commit | 5bec95f1237477e6a7c7cd8ad264b6bfbe4a174c (patch) | |
tree | df33831c9e5511ef5d26b19665182712f3798b9f /vnc | |
parent | 41254913673f07318811c1cc06e5ee80b19d87fd (diff) | |
download | xrdp-proprietary-5bec95f1237477e6a7c7cd8ad264b6bfbe4a174c.tar.gz xrdp-proprietary-5bec95f1237477e6a7c7cd8ad264b6bfbe4a174c.zip |
added mac makefiles
Diffstat (limited to 'vnc')
-rw-r--r-- | vnc/Makefile.osx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/vnc/Makefile.osx b/vnc/Makefile.osx new file mode 100644 index 00000000..522f2d38 --- /dev/null +++ b/vnc/Makefile.osx @@ -0,0 +1,37 @@ +# libvnc makefile + +VNCOBJ = vnc.o os_calls.o d3des.o + +DESTDIR = /usr/local/xrdp +CFGDIR = /etc/xrdp +PIDDIR = /var/run +MANDIR = /usr/local/man +DOCDIR = /usr/doc/xrdp + +DEFINES = + +VNCLIB = libvnc.dylib + +CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES) +C_OS_FLAGS = $(CFLAGS) -c -g +LDFLAGS = -dynamiclib -Wl,-flat_namespace -Wl,-undefined -Wl,suppress +LIBS = +CC = gcc + +all: $(VNCLIB) + +$(VNCLIB): $(VNCOBJ) + $(CC) $(LDFLAGS) -o $(VNCLIB) $(VNCOBJ) $(LIBS) + +clean: + rm -f $(VNCOBJ) $(VNCLIB) + +os_calls.o: ../common/os_calls.c + $(CC) $(C_OS_FLAGS) ../common/os_calls.c + +d3des.o: ../common/d3des.c + $(CC) $(C_OS_FLAGS) ../common/d3des.c + +install: + install $(VNCLIB) $(DESTDIR)/$(VNCLIB) + |