📄 makefile
字号:
# Makefile -- Makefile for util-linux Linux utilities# Created: Sat Dec 26 20:09:40 1992# Revised: Fri Oct 6 21:02:21 1995 by r.faith@ieee.org# Striped: 2007-09-26 by Niko Wilms# Copyright 1992, 1993, 1994, 1995 Rickard E. Faith (faith@cs.unc.edu)#include make_includeinclude MCONFIGSBIN:=sfdiskMAN8:=sfdisk.8SBINDIR ?= ../output/sbin.PHONY: clean all installall: $(SBIN)sfdisk: sfdisk.o disksize.o i386_sys_types.o partname.oinstall: $(SBINDIR)/$(SBIN)$(SBINDIR)/$(SBIN): $(SBIN) @$(INSTALLDIR) $(SBINDIR) @$(INSTALLBIN) $(SBIN) $(SBINDIR)clean: @-rm -f *.o *~ core $(SBIN)mrpropper: clean @-rm -f $(SBINDIR)/$(SBIN)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -