diff options
author | jsorg71 <jsorg71> | 2008-12-16 02:47:45 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-12-16 02:47:45 +0000 |
commit | af83cb7cae6c79866518da1627264397b6afc151 (patch) | |
tree | 69f87fe0b3ac3b201a866979db3551ac873d6d34 /rdp | |
parent | 8090df64a5a74e899d5494570e33b7391dc45a3c (diff) | |
download | xrdp-proprietary-af83cb7cae6c79866518da1627264397b6afc151.tar.gz xrdp-proprietary-af83cb7cae6c79866518da1627264397b6afc151.zip |
remove old makefiles
Diffstat (limited to 'rdp')
-rw-r--r-- | rdp/Makefile | 33 | ||||
-rw-r--r-- | rdp/Makefile.osx | 39 | ||||
-rw-r--r-- | rdp/makefile_win32 | 31 |
3 files changed, 0 insertions, 103 deletions
diff --git a/rdp/Makefile b/rdp/Makefile deleted file mode 100644 index 6ffbcb52..00000000 --- a/rdp/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# 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 - -LIBDIR = /usr/local/lib/xrdp - -DEFINES = - -CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES) -#CFLAGS += -DXRDP_DEBUG -C_OS_FLAGS = $(CFLAGS) -c -LDFLAGS = -shared -LIBS = -ldl -LIBS += -lcrypto -CC = gcc - -all: librdp.so - -librdp.so: $(RDPOBJ) - $(CC) $(LDFLAGS) -o librdp.so $(RDPOBJ) $(LIBS) - -clean: - rm -f $(RDPOBJ) librdp.so - -os_calls.o: ../common/os_calls.c - $(CC) $(C_OS_FLAGS) ../common/os_calls.c - -ssl_calls.o: ../common/ssl_calls.c - $(CC) $(C_OS_FLAGS) ../common/ssl_calls.c - -install: - install librdp.so $(LIBDIR)/librdp.so diff --git a/rdp/Makefile.osx b/rdp/Makefile.osx deleted file mode 100644 index 1d7bc92a..00000000 --- a/rdp/Makefile.osx +++ /dev/null @@ -1,39 +0,0 @@ -# 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 - -DEFINES = - -LIBRDP = librdb.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 -LIBS += -lcrypto -CC = gcc - -all: $(LIBRDP) - -$(LIBRDP): $(RDPOBJ) - $(CC) $(LDFLAGS) -o $(LIBRDP) $(RDPOBJ) $(LIBS) - -clean: - rm -f $(RDPOBJ) $(LIBRDP) - -os_calls.o: ../common/os_calls.c - $(CC) $(C_OS_FLAGS) ../common/os_calls.c - -ssl_calls.o: ../common/ssl_calls.c - $(CC) $(C_OS_FLAGS) ../common/ssl_calls.c - -install: - install $(LIBRDP) $(DESTDIR)/$(LIBRDP) - diff --git a/rdp/makefile_win32 b/rdp/makefile_win32 deleted file mode 100644 index ff1e4067..00000000 --- a/rdp/makefile_win32 +++ /dev/null @@ -1,31 +0,0 @@ -# borland windows makefile -# -# this assumes openssl and borland free command line tools are installed -# this assumes c:\windows is windows directory -# -# run 'set PATH=c:\borland\bcc55\bin' and run 'make -f makefile_win32 all' -# - -RDPOBJ = rdp.obj rdp_tcp.obj rdp_iso.obj rdp_mcs.obj \ - rdp_sec.obj rdp_rdp.obj rdp_orders.obj \ - rdp_bitmap.obj rdp_lic.obj \ - os_calls.obj \ - ssl_calls.obj - -CFLAGS = -w- -O2 -I../common -Ic:/borland/bcc55/include -LDFLAGS = -Lc:/borland/bcc55/lib - -rdp: $(RDPOBJ) - $(CC) $(LDFLAGS) -WD -erdp.dll $(RDPOBJ) - -all: rdp - -clean: - del $(XRDPOBJ) rdp.dll - -os_calls.obj: - $(CC) $(CFLAGS) -c ../common/os_calls.c - -ssl_calls.obj: - $(CC) $(CFLAGS) -c ../common/ssl_calls.c - |