makefile

来自「This code hs been taken from of util-lin」· 代码 · 共 36 行

TXT
36
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?