Initial version
This commit is contained in:
commit
6f405265a5
102 changed files with 14486 additions and 0 deletions
23
code/filesys/Makefile
Normal file
23
code/filesys/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# NOTE: this is a GNU Makefile. You must use "gmake" rather than "make".
|
||||
#
|
||||
# Makefile for the file system assignment
|
||||
# Defines set up assuming multiprogramming and virtual memory done first.
|
||||
# If not, use the "bare bones" defines below.
|
||||
#
|
||||
# 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 =-DTHREADS -DUSER_PROGRAM -DVM -DFILESYS_NEEDED -DFILESYS
|
||||
INCPATH = -I../filesys -I../bin -I../vm -I../userprog -I../threads -I../machine
|
||||
C_OFILES = $(THREAD_O) $(USERPROG_O) $(VM_O) $(FILESYS_O)
|
||||
|
||||
# bare bones version
|
||||
# DEFINES =-DTHREADS -DFILESYS_NEEDED -DFILESYS
|
||||
# INCPATH = -I../filesys -I../threads -I../machine
|
||||
# C_OFILES = $(THREAD_O) $(FILESYS_O)
|
||||
|
||||
include ../Makefile.common
|
||||
include ../Makefile.dep
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue