You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
320 B
16 lines
320 B
13 years ago
|
|
||
|
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
|