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 /xup | |
parent | 41254913673f07318811c1cc06e5ee80b19d87fd (diff) | |
download | xrdp-proprietary-5bec95f1237477e6a7c7cd8ad264b6bfbe4a174c.tar.gz xrdp-proprietary-5bec95f1237477e6a7c7cd8ad264b6bfbe4a174c.zip |
added mac makefiles
Diffstat (limited to 'xup')
-rw-r--r-- | xup/Makefile.osx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/xup/Makefile.osx b/xup/Makefile.osx new file mode 100644 index 00000000..a00ef471 --- /dev/null +++ b/xup/Makefile.osx @@ -0,0 +1,35 @@ +# libxup makefile + +XUPOBJ = os_calls.o xup.o + +DESTDIR = /usr/local/xrdp +CFGDIR = /etc/xrdp +PIDDIR = /var/run +MANDIR = /usr/local/man +DOCDIR = /usr/doc/xrdp + +DEFINES = + +LIBXUP = libxup.dylib + +CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES) +#CFLAGS += -DXRDP_DEBUG +C_OS_FLAGS = $(CFLAGS) -c +LDFLAGS = -dynamiclib -Wl,-flat_namespace -Wl,-undefined -Wl,suppress +LIBS = -ldl +CC = gcc + +all: $(LIBXUP) + +$(LIBXUP): $(XUPOBJ) + $(CC) $(LDFLAGS) -o $(LIBXUP) $(XUPOBJ) $(LIBS) + +clean: + rm -f $(XUPOBJ) $(LIBXUP) + +os_calls.o: ../common/os_calls.c + $(CC) $(C_OS_FLAGS) ../common/os_calls.c + +install: + install $(LIBXUP) $(DESTDIR)/$(LIBXUP) + |