⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 < 虚拟机设计与实现> 的source code, linux版本
💻
字号:
# File: Makefile# Makefile for VM HECVM.# VM HASM.# chen yong 2007.04.13cc = gcchecvm:  cmdline.o dbgcmd.o   dbgdata.o    error.o    \        exenv.o   init.o     interrupt.o  intlinux.o \        iset.o    linux.o   reformat.o    run.o      \        main.o	$(cc) -o hecvm  cmdline.o dbgcmd.o   dbgdata.o    error.o    \                    exenv.o   init.o     interrupt.o  intlinux.o \                    iset.o    linux.o   reformat.o    run.o      \                    main.ocmdline.o:  cmdline.c	$(cc) -c cmdline.cdbgcmd.o:   dbgcmd.c	$(cc) -c dbgcmd.cdbgdata.o:  dbgdata.c	$(cc) -c dbgdata.cerror.o:  error.c	$(cc) -c error.cexenv.o:  exenv.c	$(cc) -c exenv.cinit.o:   init.c	$(cc) -c init.cinterrupt.o:  interrupt.c	$(cc) -c interrupt.cintlinux.o:   intlinux.c	$(cc) -c intlinux.ciset.o:	$(cc) -c iset.clinux.o:  linux.c	$(cc) -c linux.creformat.o:  reformat.c	$(cc) -c reformat.crun.o:    run.c	$(cc) -c run.cmain.o:   main.c	$(cc) -c main.cclean:	rm hecvm  cmdline.o dbgcmd.o   dbgdata.o    error.o    \              exenv.o   init.o     interrupt.o  intlinux.o \              iset.o    linux.o   reformat.o    run.o      \              main.o 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -