mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
23df1a2f4b
svn path=/trunk/; revision=44365
18 lines
392 B
Text
18 lines
392 B
Text
#
|
|
# 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
|