summaryrefslogtreecommitdiffstats
path: root/xorg/tests/tcp_proxy/Makefile
diff options
context:
space:
mode:
authorLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2012-09-19 20:51:34 -0700
committerLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2012-09-19 20:51:34 -0700
commit1123323fda6d128fb98b0427e0ea5f6a2dc9e632 (patch)
tree3407a3771a069f812554312ce7c36db625139cc2 /xorg/tests/tcp_proxy/Makefile
parent3cedfae76a2351bc8b1e5bd2ee33bbf8630dbacf (diff)
downloadxrdp-proprietary-1123323fda6d128fb98b0427e0ea5f6a2dc9e632.tar.gz
xrdp-proprietary-1123323fda6d128fb98b0427e0ea5f6a2dc9e632.zip
o moved from GNU General Public License to Apache License, Version 2.0
o applied new coding standards to all .c files o moved some files around
Diffstat (limited to 'xorg/tests/tcp_proxy/Makefile')
-rw-r--r--xorg/tests/tcp_proxy/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/xorg/tests/tcp_proxy/Makefile b/xorg/tests/tcp_proxy/Makefile
deleted file mode 100644
index eeb33711..00000000
--- a/xorg/tests/tcp_proxy/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-
-XRDP_INSTALL_BASE=/home/jay/xrdpinst
-
-OBJS = main.o
-CFLAGS = -O2 -Wall -I../../../common
-LDFLAGS = -Wl,-rpath,$(XRDP_INSTALL_BASE)/lib/xrdp
-LIBS = -L$(XRDP_INSTALL_BASE)/lib/xrdp -ldl -lcommon
-
-all: tcp_proxy
-
-tcp_proxy: $(OBJS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o tcp_proxy $(OBJS) $(LIBS)
-
-clean:
- rm -f $(OBJS) tcp_proxy