📄 makefile_nanox
字号:
#
# nanoxrdesktop makefile
#
# These two following lines must point to the currently installed version of
# nano-X. You can override them on the make command line to point at your
# installation without changing this file.
#
NXINCLUDES=/usr/local/nanox/src/include
NXLIBS=/usr/local/nanox/src/lib/libnano-X.a
CC = gcc
CFLAGS = -Os -Wall -I$(NXINCLUDES)
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: nanoxrd
nanoxrd: $(RESTOBJ) nanoxwin.o
$(CC) -o nanoxrdesktop nanoxwin.o $(NXLIBS) $(RESTOBJ) $(LDFLAGS)
strip nanoxrdesktop
clean:
rm -f nanoxrdesktop
rm -f *.o
rm -f ../*.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -