makefile.svr4
来自「一些加密解密的源代码」· SVR4 代码 · 共 44 行
SVR4
44 行
# Makefile for Square 2.5 (assuming SVR4)## 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 = ccCFLAGS = -O -s -DLITTLE_ENDIAN=1OBJS = sqtest.o square.o sqecb.o sqcbc.o sqcts.o sqcfb.o sqofb.o sqhash.osqtest: $(OBJS) cc $(OBJS) -o sqtestsqecb: sqecb.o square.o $(CC) sqecb.c $(CFLAGS) -csqcbc: sqcbc.o square.o $(CC) sqcbc.c $(CFLAGS) -csqcts: sqcts.o square.o $(CC) sqcts.c $(CFLAGS) -csqcfb: sqcfb.o square.o $(CC) sqcfb.c $(CFLAGS) -csqofb: sqofb.o square.o $(CC) sqofb.c $(CFLAGS) -csqhash: sqhash.o square.o $(CC) sqhash.c $(CFLAGS) -csquare.o: square.c square.h square.tab $(CC) square.c $(CFLAGS) -csquare.tab: sqgen ./sqgenclean: rm *.o square.tab sqgen sqtest
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?