📄 makefile_sun
字号:
lint_options = -uvlint_pipe = | grep -v -e "possible pointer" \ | grep -v -e "and return;" \ | grep -v -e "llib-lc" \ | grep -v -e "ignored"# The interesting stuff:files = choldc_e.c cholsl.c matrix_iof.c memoryutilf.c ctmq_batch2.c regress.c ctml8.c ofiles = $(files:.c=.o)base = .binary_directory = . main = ctml8.c execute = bctm# here's what controls compilation of all .o files# this overrides any implicit compilation directives built in.c.o: cc -fast -Dsun4 -target sun4 -c $*.c# For the rest of the file JUST STANDARD STUFF. Don't try to edit or understand# -lm - math library for sqrt() - link with a file named libm.a (usually in /usr/lib)test4: $(ofiles) cc -o $(execute) $(ofiles) -lmlint: lint $(lint_options) $(include_directories) \ test4.c $(xwsource) $(sources) $(lint_pipe)clean: rm -f *.o core $(execute) # To maintain dependence on include files changing:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -