📄 makefile_xxx
字号:
#
# 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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -