makefile
来自「FREESWAN VPN源代码包」· 代码 · 共 22 行
TXT
22 行
CFLAGS=-O3 -fomit-frame-pointer -I../include $(EXTRA_CFLAGS)LIBOBJ := hmac_sha2.o sha2.oBLIB := libsha2.a.S.o: $(CC) $(AFLAGS) -c $< -o $@$(BLIB): $(LIBOBJ) /bin/rm -f $(BLIB) ar cr $(BLIB) $(LIBOBJ) -if test -s /bin/ranlib; then /bin/ranlib $(BLIB); \ else if test -s /usr/bin/ranlib; then /usr/bin/ranlib $(BLIB); \ else exit 0; fi; fitest: test_main.o $(BLIB) $(CC) -o $@ $^ clean: rm -f *.[oa] core $(TARGET) test
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?