/[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 28 - (show annotations)
Wed Jun 20 13:54:48 2001 UTC (22 years, 10 months ago) by matty
File size: 822 byte(s)
Merges from pl19-6-5.

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) -I/usr/X11R6/include
12 LIBS = -L/usr/X11R6/lib -lX11 -lnsl
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 *~
25
26 .SUFFIXES:
27 .SUFFIXES: .c .o
28
29 .c.o:
30 $(CC) $(CFLAGS) -o $@ -c $<

  ViewVC Help
Powered by ViewVC 1.1.26