📄 makefile
字号:
# This material contains unpublished, proprietary software of # Entropic Research Laboratory, Inc. Any reproduction, distribution, # or publication of this work must be authorized in writing by Entropic # Research Laboratory, Inc., and must bear the notice: ## "Copyright (c) 1988-1990 Entropic Speech, Inc. # "Copyright (c) 1990-1996 Entropic Research Laboratory, Inc. # All rights reserved"## The copyright notice above does not evidence any actual or intended # publication of this source code. ## @(#)makefile 1.5 11/15/96 ESI/ERL# # Written by: # Checked by:# Revised by:# # Makefile for: setrange# CFLAGS = -g $(PROGCFLAGS)OBJS = setrange.oSRCS = setrange.cPROGNAME = setrangeMANNAME = setrange.1DEFPARAM = Psetrange$(PROGNAME): $(SPSLIB) $(OBJS) $(CC) $(CFLAGS) $(OBJS) $(SPSLIB) -lm -o $(PROGNAME)## list .o file dependecies here, $(SINC) is the parent of the# esps include directories # eg:#$(OBJS): $(SINC)/esps.h install: $(PROGNAME) $(STRIP) $(PROGNAME) -mv -f $(BINDIR)/$(PROGNAME) $(OLDBIN)/$(PROGNAME) -chmod $(PROGMOD) $(OLDBIN)/$(PROGNAME) mv -f $(PROGNAME) $(BINDIR)/$(PROGNAME) chmod $(PROGMOD) $(BINDIR)/$(PROGNAME) -diffmk $(MANDIR)/man1/$(MANNAME) $(MANNAME) man.diff @echo diffmked man page left in man.diff -rm -f $(MANDIR)/man1/$(MANNAME) cp $(MANNAME) $(MANDIR)/man1/$(MANNAME) chmod $(MANMOD) $(MANDIR)/man1/$(MANNAME)## install the default parameter file# delete this section if there is no default params file# -rm -f $(PARAMDIR)/$(DEFPARAM) cp $(DEFPARAM) $(PARAMDIR)/$(DEFPARAM) chmod $(LIBMOD) $(PARAMDIR)/$(DEFPARAM)clean: -rm -f $(OBJS) $(PROGNAME) common.test test.sd lint# also remove any test files, etc here lint: $(SRCS) $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIB) -lm > lint## you should have a test script for the program that gets called# here. If not, remove this section.test: $(PROGNAME) -sh $(PROGNAME).tes
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -