/[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 6 - (show annotations)
Wed Jul 5 07:44:21 2000 UTC (23 years, 11 months ago) by matty
File size: 456 byte(s)
Started hacking on an X-Windows (Xlib) interface.
Currently pops up a window and displays bitmaps it sees side by side.
Next step is to go back to the protocol and interpret the surrounding data
stream.

1 ##############################################
2 # rdesktop: A Remote Desktop Protocol client #
3 # Linux Makefile #
4 # Copyright (C) Matthew Chapman 1999-2000 #
5 ##############################################
6
7 CC = gcc
8 CFLAGS = -g -Wall
9 LIBS = -L/usr/X11R6/lib -lX11
10 OBJECTS = client.o parse.o tcp.o iso.o mcs.o rdp.o bitmap.o xwin.o
11
12 rdesktop: $(OBJECTS)
13 @$(CC) $(CFLAGS) -o rdesktop $(LIBS) $(OBJECTS)
14
15 clean:
16 rm -f *.o

  ViewVC Help
Powered by ViewVC 1.1.26