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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14 - (hide annotations)
Sat Sep 16 12:51:29 2000 UTC (23 years, 8 months ago) by matty
File size: 816 byte(s)
Added explicit .c.o rule for BSD and IRIX make, which have a different
default.

1 matty 3 ##############################################
2     # rdesktop: A Remote Desktop Protocol client #
3 matty 10 # Basic Makefile #
4 matty 3 # Copyright (C) Matthew Chapman 1999-2000 #
5     ##############################################
6    
7 matty 10 # Uncomment to enable debugging
8     # DEBUG = -g -DRDP_DEBUG
9    
10 matty 6 CC = gcc
11 matty 13 CFLAGS = -O2 -Wall $(DEBUG) -I/usr/X11R6/include
12 matty 6 LIBS = -L/usr/X11R6/lib -lX11
13 matty 3
14 matty 10 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 matty 6
17 matty 10 rdesktop: $(RDPOBJ) $(CRYPTOBJ)
18 matty 14 $(CC) $(CFLAGS) -o rdesktop $(LIBS) $(RDPOBJ) $(CRYPTOBJ)
19 matty 10
20 matty 9 proto:
21 matty 14 cproto -DMAKE_PROTO -o proto.h *.c
22 matty 9
23 matty 6 clean:
24 matty 10 rm -f *.o crypto/*.o *~
25 matty 14
26     .SUFFIXES:
27     .SUFFIXES: .c .o
28    
29     .c.o:
30     $(CC) $(CFLAGS) -o $@ -c $<

  ViewVC Help
Powered by ViewVC 1.1.26