makefile.gnu

来自「一些加密解密的源代码」· GNU 代码 · 共 37 行

GNU
37
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?