📄 makefile
字号:
# Makefile for File System (FS)SERVER = fs# directoriesu = /usri = $u/includes = $i/sysh = $i/minix# programs, flags, etc.CC = exec ccCFLAGS = -I$i $(EXTRA_OPTS)LDFLAGS = -iLIBS = -lsys -lsysutil -ltimersOBJ = main.o open.o read.o write.o pipe.o dmap.o \ device.o path.o mount.o link.o super.o inode.o \ cache.o cache2.o filedes.o stadir.o protect.o time.o \ lock.o misc.o utility.o select.o timers.o table.o \ cdprobe.o# build local binary all build: $(SERVER)$(SERVER): $(OBJ) $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS) install -S 512w $@# install with other serversinstall: /usr/sbin/$(SERVER)/usr/sbin/$(SERVER): $(SERVER) install -o root -cs $? $@ # clean up local filesclean: rm -f $(SERVER) *.o *.bak depend: /usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend# Include generated dependencies.include .depend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -