📄 makefile
字号:
#@(#)Makefile 4.1 Ultrix 7/17/90ALL= strings bitops float forloop lib lib-s array nocount pack mark process\ mem memsall: $(ALL)strings: strings.mod mod -o strings -C -g strings.mod @echo strings will complain if errors in string module stringsbitops: bitops.mod mod -o bitops -C -g bitops.mod @echo bitops will complain if errors in bitoperations implementation bitopsfloat: float.mod mod -o float -C -g float.mod @echo float will complain if errors in floating conversion floatforloop: forloop.mod mod -o forloop -C -g forloop.mod @echo forloop will complain if errors in char for loop forlooplib: lib.mod @echo lib should generate no compile errors mod -o lib -C -g lib.modlib-s: lib-s.mod @echo lib-s should generate no compile errors mod -o lib-s -s -C -g lib-s.modarray: array.mod @echo 'compiler should detect 4 "open array for parameters only"' @echo 'errors, 1 "@nocount for Modula-2 parameter" error, and 1' @echo 'cardinal division overflow' -mod -o array -C -g array.mod touch arraynocount: nocount.mod @echo nocount should generate no compile errors @echo look at code to see if right thing is happening mod -S -g nocount.mod touch nocountpack: pack.mod @echo pack should generate no compile errors @echo look at code to see if right thing is happening mod -o pack -C -g pack.modmark: mark.mod @echo mark should generate no compile errors mod -o mark -C -g mark.modprocess: process.mod @echo process should run and generate a bunch of output mod -o process -C -g process.mod processmem: mem.mod @echo mem should run and generate a bunch of output mod -o mem -C -g mem.mod memmems: mems.mod @echo mem should run and generate a bunch of output mod -o mem -C -g mems.mod memclean: -rm -f $(ALL)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -