smakefile

来自「操作系统实验,文件系统,c语言实现的」· 代码 · 共 82 行

TXT
82
字号
/*********************************************************** 

   smakefile  注:如一行命令太长了,可用反斜杠(即”\”)来换行。 

************************************************************/ 

filsys: main.o igetput.o iallfre.o ballfre.o name.o access.o log.o close.o\ 

   creat.o delete.o dir.o dirlt.o open.o rdwt.o format.o install.o halt.o   

gcc -o filsys main.o igetput.o iallfre.o ballfre.o name.o access.o \ 

log.o close.o creat.o delete.o dir.o dirlt.o open.o rdwt.o format.o install.o halt.o 

main.o: main.c filesys.h 

   gcc -c main.c 

igetput.o: igetput.c filesys.h 

   gcc -c igetput.c 

iallfre.o: iallfre.c filesys.h 

   gcc -c iallfre.c 

ballfre.o: ballfre.c filesys.h 

   gcc -c ballfre.c 

name.o: name.c filesys.h  

   gcc -c name.c 

access.o: access.c filesys.h 

   gcc -c access.c 

log.o: log.c filesys.h 

   gcc -c log.c 

close.o: close.c filesys.h 

   cc -c close.c 

creat.o: creat.c filesys.h 

   gcc -c creat.c   

delete.o: delete.c filesys.h 

   gcc -c delete.c 

dir.o: dir.c filesys.h 

   gcc -c dir.c   

dirlt.o: dirlt.c filesys.h 

   gcc -c dirlt.c 

open.o: open.c filesys.h 

   gcc -c open.c 

rdwt.o: rdwt.c filesys.h 

   gcc -c rdwt.c 

format.o: format.c filesys.h 

   gcc -c format.c 

imstall.o: install.c filesys.h 

   gcc -c install.c 

halt.o: halt.c 

   gcc -c halt.c   

⌨️ 快捷键说明

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