/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

sourceforge.net/branches/RDESKTOP/rdesktop/Makefile revision 3 by matty, Wed May 10 07:36:34 2000 UTC sourceforge.net/trunk/rdesktop/Makefile revision 10 by matty, Tue Aug 15 10:23:24 2000 UTC
# Line 1  Line 1 
1  ##############################################  ##############################################
2  # rdesktop: A Remote Desktop Protocol client #  # rdesktop: A Remote Desktop Protocol client #
3  # Linux Makefile                             #  # Basic Makefile                             #
4  # Copyright (C) Matthew Chapman 1999-2000    #  # Copyright (C) Matthew Chapman 1999-2000    #
5  ##############################################  ##############################################
6    
7  SOURCES=client.c parse.c tcp.c iso.c mcs.c rdp.c bitmap.c  # Uncomment to enable debugging
8    # DEBUG = -g -DRDP_DEBUG
9    
10  rdesktop: $(SOURCES)  CC     = gcc
11          @gcc -g -Wall -o rdesktop $(SOURCES)  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 *~

Legend:
Removed from v.3  
changed lines
  Added in v.10

  ViewVC Help
Powered by ViewVC 1.1.26