rdesktop/uiports/makefile_xxx
Jay Sorg 53a5a182bb added makefile and new orders
git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@851 423420c4-83ab-492f-b58f-81f9feb106b5
2005-03-13 07:30:31 +00:00

19 lines
392 B
Plaintext

#
# xxxrdesktop makefile
#
CC = gcc
CFLAGS = -O2 -Wall
RESTOBJ = ../tcp.o ../iso.o ../mcs.o ../secure.o ../rdp.o ../rdp5.o ../orders.o ../cache.o ../mppc.o ../licence.o ../bitmap.o ../channels.o ../pstcache.o
LDFLAGS = -lcrypto
all: xxxrd
xxxrd: $(RESTOBJ) xxxwin.o
$(CC) -o xxxrdesktop xxxwin.o $(RESTOBJ) $(LDFLAGS)
strip xxxrdesktop
clean:
rm -f xxxrdesktop
rm -f *.o
rm -f ../*.o