📄 makefile
字号:
# @(#)Makefile 1.1 92/07/30 SMI## Copyright (c) 1987 Sun Microsystems# Copyright (c) 1984 AT&T# All Rights Reserved# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T# The copyright notice above does not evidence any# actual or intended publication of such source code.#ident "@(#)rmntstat:rmntstat.mk 1.3"DESTDIR =BIN=rmntstatGNODESDIR = ../fusageINC = /usr/includeCFLAGS = -O -c -DRFSLDFLAGS = -lkvmFRC =.MAKE.STATE:.INIT: fumount.hall: $(BIN)rmntstat: rmntstat.o getnodes.o $(CC) -o rmntstat $(LDFLAGS) rmntstat.o getnodes.o chmod 755 rmntstatrmntstat.o : rmntstat.c \ $(INC)/stdio.h $(INC)/fcntl.h $(INC)/sys/types.h \ $(INC)/rfs/rfs_misc.h $(INC)/rfs/adv.h \ $(INC)/rfs/nserve.h $(INC)/sys/stat.h \ $(INC)/rfs/rfs_mnt.h $(INC)/rfs/fumount.h $(CC) -I$(INC) -c $(CFLAGS) rmntstat.cgetnodes.o : $(GNODESDIR)/getnodes.c \ $(INC)/nlist.h $(INC)/stdio.h $(INC)/fcntl.h \ $(INC)/sys/types.h $(INC)/rfs/sema.h \ $(INC)/rfs/comm.h \ $(INC)/rfs/cirmgr.h $(INC)/rfs/idtab.h \ $(INC)/sys/mount.h $(INC)/rfs/adv.h $(INC)/rfs/fumount.h $(CC) -c $(CFLAGS) $(GNODESDIR)/getnodes.cinstall: $(BIN) install -s $(BIN) $(DESTDIR)/usr/binclean: rm -f *.o $(BIN)clobber: clean rm -f rmntstatFRC:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -