?? makefile
字號(hào):
TARGETS = makefs fsh tstfsall : $(TARGETS)## change the -O7 to -O3 if your compiler doesn't grok -O7#CFLAGS = -DUSER=1 -O7SUPPORT_OBJS = rootfs.o initfs.o kernel.o cache.o sl.o stub.oMISC_OBJS = sysdep.o util.o hexdump.o argv.oFS_OBJS = mount.o bitmap.o journal.o inode.o dstream.o dir.o \ file.o io.o bitvector.ofsh : fsh.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS) cc -o $@ fsh.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS)tstfs : tstfs.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS) cc -o $@ tstfs.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS)makefs : makefs.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS) cc -o $@ makefs.o $(FS_OBJS) $(SUPPORT_OBJS) $(MISC_OBJS).c.o: $(CC) -c $(CFLAGS) -o $@ $<makefs.o : makefs.c myfs.hfsh.o : fsh.c myfs.htstfs.o : tstfs.c myfs.hmount.o : mount.c myfs.hjournal.o : journal.c myfs.hbitmap.o : bitmap.c myfs.hinode.o : inode.c myfs.hdstream.o : dstream.c myfs.hdir.o : dir.c myfs.hfile.o : file.c myfs.h bitvector.o : bitvector.c bitvector.h util.o : util.c myfs.hmyfs.h : compat.h cache.h lock.h mount.h bitmap.h journal.h inode.h file.h \ dir.h dstream.h io.h util.h fsproto.h bitvector.hsysdep.o : sysdep.c compat.h kernel.o : kernel.c compat.h fsproto.h kprotos.hrootfs.o : compat.h fsproto.hinitfs.o : initfs.c compat.h fsproto.h myfs_vnops.hsl.o : sl.c skiplist.hcache.o : cache.c cache.h compat.hstub.o : stub.c compat.hclean: rm -f *.o $(TARGETS)
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -