📄 makefile.gnu
字号:
# Makefile for Square 2.5 (assuming GNU-make)## This makefile is provided as an example.## Note: On some architectures endianness is detected by the# compiler directives in the code;# safer is to specify it explicitlyCC = gccCFLAGS = -Wall -O3 -fomit-frame-pointer -ffast-math -s \ -funroll-loops -DTEST_SQUARE=1 -DMASKED_BYTE_EXTRACTION=1 \ -DLITTLE_ENDIAN=1sqtest: sqtest.o square.o sqecb.o sqcbc.o sqcts.o sqcfb.o sqofb.o sqhash.osqecb: sqecb.o square.osqcbc: sqcbc.o square.osqcts: sqcts.o square.osqcfb: sqcfb.o square.osqofb: sqofb.o square.osqhash: sqhash.o square.osquare.o: square.c square.h square.tab $(CC) square.c $(CFLAGS) -csquare.tab: sqgen sqgenclean: rm *.o square.tab sqgen
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -