/[rdesktop]/sourceforge.net/trunk/rdesktop/Makefile
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sourceforge.net/trunk/rdesktop/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (show annotations)
Tue Aug 15 10:23:24 2000 UTC (23 years, 8 months ago) by matty
File size: 732 byte(s)
Major commit of work from laptop - done in various free moments.
Implemented encryption layer and some basic licensing negotiation.
Reorganised code somewhat. While this is not quite as clean, it is
a lot faster - our parser speed was becoming a bottle-neck.

1 ##############################################
2 # rdesktop: A Remote Desktop Protocol client #
3 # Basic Makefile #
4 # Copyright (C) Matthew Chapman 1999-2000 #
5 ##############################################
6
7 # Uncomment to enable debugging
8 # DEBUG = -g -DRDP_DEBUG
9
10 CC = gcc
11 CFLAGS = -O2 -Wall $(DEBUG)
12 LIBS = -L/usr/X11R6/lib -lX11
13
14 RDPOBJ = rdesktop.o tcp.o iso.o mcs.o secure.o licence.o rdp.o orders.o bitmap.o cache.o xwin.o
15 CRYPTOBJ = crypto/rc4_enc.o crypto/rc4_skey.o crypto/md5_dgst.o crypto/sha1dgst.o crypto/arith.o
16
17 rdesktop: $(RDPOBJ) $(CRYPTOBJ)
18 @$(CC) $(CFLAGS) -o rdesktop $(LIBS) $(RDPOBJ) $(CRYPTOBJ)
19
20 proto:
21 @cproto -DMAKE_PROTO -o proto.h *.c
22
23 clean:
24 rm -f *.o crypto/*.o *~

  ViewVC Help
Powered by ViewVC 1.1.26