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

📄 makefile

📁 nachos系统作业 实现线程系统 实现一个电梯模拟 附实验报告
💻
📖 第 1 页 / 共 2 页
字号:
# NOTE: this is a GNU Makefile.  You must use "gmake" rather than "make".## Makefile for the virtual memory assignment#    Defines set up assuming the virtual memory assignment is done before # 	the file system assignment. If not, use the "filesys first"  #	defines below. ## Also, if you want to simplify the translation so it assumes# only linear page tables, don't define USE_TLB.## Copyright (c) 1992 The Regents of the University of California.# All rights reserved.  See copyright.h for copyright notice and limitation # of liability and disclaimer of warranty provisions.DEFINES = -DUSER_PROGRAM  -DFILESYS_NEEDED -DFILESYS_STUB -DVM -DUSE_TLBINCPATH = -I../filesys -I../bin -I../vm -I../userprog -I../threads -I../machineHFILES = $(THREAD_H) $(USERPROG_H) $(VM_H)CFILES = $(THREAD_C) $(USERPROG_C) $(VM_C)C_OFILES = $(THREAD_O) $(USERPROG_O) $(VM_O)# if file sys done first!# DEFINES = -DUSER_PROGRAM -DFILESYS_NEEDED -DFILESYS -DVM -DUSE_TLB# INCPATH = -I../vm -I../bin -I../filesys -I../userprog -I../threads -I../machine# HFILES = $(THREAD_H) $(USERPROG_H) $(FILESYS_H) $(VM_H)# CFILES = $(THREAD_C) $(USERPROG_C) $(FILESYS_C) $(VM_C)# C_OFILES = $(THREAD_O) $(USERPROG_O) $(FILESYS_O) $(VM_O)include ../Makefile.commoninclude ../Makefile.dep#-----------------------------------------------------------------# DO NOT DELETE THIS LINE -- make depend uses it# DEPENDENCIES MUST END AT END OF FILEmain.o: ../threads/main.cc ../threads/copyright.h ../threads/utility.h \  ../threads/bool.h ../machine/sysdep.h ../threads/copyright.h \  /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/system.h \  ../threads/thread.h ../machine/machine.h ../threads/utility.h \  ../machine/translate.h ../machine/disk.h ../userprog/addrspace.h \  ../threads/copyright.h ../filesys/filesys.h ../threads/copyright.h \  ../filesys/openfile.h ../threads/utility.h ../threads/scheduler.h \  ../threads/list.h ../machine/interrupt.h ../threads/list.h \  ../machine/stats.h ../machine/timer.h ../filesys/filesys.hlist.o: ../threads/list.cc ../threads/copyright.h ../threads/list.h \  ../threads/utility.h ../threads/bool.h ../machine/sysdep.h \  ../threads/copyright.h /usr/include/stdio.h /usr/include/features.h \  /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \  /usr/include/bits/wordsize.h /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.hscheduler.o: ../threads/scheduler.cc ../threads/copyright.h \  ../threads/scheduler.h ../threads/list.h ../threads/utility.h \  ../threads/bool.h ../machine/sysdep.h ../threads/copyright.h \  /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/thread.h \  ../machine/machine.h ../threads/utility.h ../machine/translate.h \  ../machine/disk.h ../userprog/addrspace.h ../threads/copyright.h \  ../filesys/filesys.h ../threads/copyright.h ../filesys/openfile.h \  ../threads/utility.h ../threads/system.h ../machine/interrupt.h \  ../threads/list.h ../machine/stats.h ../machine/timer.h \  ../filesys/filesys.hsynch.o: ../threads/synch.cc ../threads/copyright.h ../threads/synch.h \  ../threads/thread.h ../threads/utility.h ../threads/bool.h \  ../machine/sysdep.h ../threads/copyright.h /usr/include/stdio.h \  /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../machine/machine.h \  ../threads/utility.h ../machine/translate.h ../machine/disk.h \  ../userprog/addrspace.h ../threads/copyright.h ../filesys/filesys.h \  ../threads/copyright.h ../filesys/openfile.h ../threads/utility.h \  ../threads/list.h ../threads/system.h ../threads/scheduler.h \  ../machine/interrupt.h ../threads/list.h ../machine/stats.h \  ../machine/timer.h ../filesys/filesys.hsynchlist.o: ../threads/synchlist.cc ../threads/copyright.h \  ../threads/synchlist.h ../threads/list.h ../threads/utility.h \  ../threads/bool.h ../machine/sysdep.h ../threads/copyright.h \  /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/synch.h \  ../threads/thread.h ../machine/machine.h ../threads/utility.h \  ../machine/translate.h ../machine/disk.h ../userprog/addrspace.h \  ../threads/copyright.h ../filesys/filesys.h ../threads/copyright.h \  ../filesys/openfile.h ../threads/utility.hsystem.o: ../threads/system.cc ../threads/copyright.h ../threads/system.h \  ../threads/utility.h ../threads/bool.h ../machine/sysdep.h \  ../threads/copyright.h /usr/include/stdio.h /usr/include/features.h \  /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \  /usr/include/bits/wordsize.h /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/thread.h \  ../machine/machine.h ../threads/utility.h ../machine/translate.h \  ../machine/disk.h ../userprog/addrspace.h ../threads/copyright.h \  ../filesys/filesys.h ../threads/copyright.h ../filesys/openfile.h \  ../threads/utility.h ../threads/scheduler.h ../threads/list.h \  ../machine/interrupt.h ../threads/list.h ../machine/stats.h \  ../machine/timer.h ../filesys/filesys.hthread.o: ../threads/thread.cc ../threads/copyright.h ../threads/thread.h \  ../threads/utility.h ../threads/bool.h ../machine/sysdep.h \  ../threads/copyright.h /usr/include/stdio.h /usr/include/features.h \  /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \  /usr/include/bits/wordsize.h /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../machine/machine.h \  ../threads/utility.h ../machine/translate.h ../machine/disk.h \  ../userprog/addrspace.h ../threads/copyright.h ../filesys/filesys.h \  ../threads/copyright.h ../filesys/openfile.h ../threads/utility.h \  ../threads/switch.h ../threads/synch.h ../threads/list.h \  ../threads/system.h ../threads/scheduler.h ../machine/interrupt.h \  ../threads/list.h ../machine/stats.h ../machine/timer.h \  ../filesys/filesys.hutility.o: ../threads/utility.cc ../threads/copyright.h \  ../threads/utility.h ../threads/bool.h ../machine/sysdep.h \  ../threads/copyright.h /usr/include/stdio.h /usr/include/features.h \  /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \  /usr/include/bits/wordsize.h /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/stdarg.hthreadtest.o: ../threads/threadtest.cc ../threads/copyright.h \  ../threads/system.h ../threads/utility.h ../threads/bool.h \  ../machine/sysdep.h ../threads/copyright.h /usr/include/stdio.h \  /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/thread.h \  ../machine/machine.h ../threads/utility.h ../machine/translate.h \  ../machine/disk.h ../userprog/addrspace.h ../threads/copyright.h \  ../filesys/filesys.h ../threads/copyright.h ../filesys/openfile.h \  ../threads/utility.h ../threads/scheduler.h ../threads/list.h \  ../machine/interrupt.h ../threads/list.h ../machine/stats.h \  ../machine/timer.h ../filesys/filesys.hinterrupt.o: ../machine/interrupt.cc ../threads/copyright.h \  ../machine/interrupt.h ../threads/list.h ../threads/copyright.h \  ../threads/utility.h ../threads/bool.h ../machine/sysdep.h \  /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h ../threads/system.h \  ../threads/thread.h ../machine/machine.h ../threads/utility.h \  ../machine/translate.h ../machine/disk.h ../userprog/addrspace.h \  ../threads/copyright.h ../filesys/filesys.h ../threads/copyright.h \  ../filesys/openfile.h ../threads/utility.h ../threads/scheduler.h \  ../threads/list.h ../machine/interrupt.h ../machine/stats.h \  ../machine/timer.h ../filesys/filesys.hsysdep.o: ../machine/sysdep.cc ../threads/copyright.h \  /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \  /usr/include/gnu/stubs.h /usr/include/bits/wordsize.h \  /usr/include/gnu/stubs-32.h \  /usr/lib/gcc/i386-redhat-linux/4.0.2/include/stddef.h \  /usr/include/bits/types.h /usr/include/bits/typesizes.h \  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \  /usr/include/bits/wchar.h /usr/include/gconv.h ../threads/stdarg.h \  /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \  /usr/include/string.h /usr/include/xlocale.h /usr/include/signal.h \  /usr/include/bits/sigset.h /usr/include/bits/signum.h \  /usr/include/time.h /usr/include/bits/siginfo.h \

⌨️ 快捷键说明

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