📄 makefile
字号:
SHELL=/bin/shBENCHMARK=luBENCHMARKU=LUinclude ../config/make.defOBJS = lu.o ${COMMON}/c_print_results.o \ ${COMMON}/c_timers.o ${COMMON}/c_wtime.oinclude ../sys/make.common# npbparams.h is included by applu.incl# The following rule should do the trick but many make programs (not gmake)# will do the wrong thing and rebuild the world every time (because the# mod time on header.h is not changed. One solution would be to # touch header.h but this might cause confusion if someone has# accidentally deleted it. Instead, make the dependency on npbparams.h# explicit in all the lines below (even though dependence is indirect). # applu.incl: npbparams.h${PROGRAM}: config ${OBJS} ${CLINK} ${CLINKFLAGS} -o ${PROGRAM} ${OBJS} ${C_LIB}lu.o: lu.c applu.h npbparams.h ${CCOMPILE} lu.cclean: - /bin/rm -f npbparams.h - /bin/rm -f *.o *~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -