📄 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) 1990-1991 Entropic Research Laboratory, Inc.# All rights reserved"## The copyright notice above does not evidence any actual or intended# publication of this source code.## @(#)makefile 3.10 07 Apr 1993 ERL## Makefile for: select## Written by: Alan Parker# Checked by:# Revised by: Ken NelsonCFLAGS = $(PROGCFLAGS) -gYFLAGS = -dOBJS = parser.o lexan.o comm.o select.o io.o version.o interp.o math.oCSRCS = comm.c select.c io.c version.c interp.c math.cselect: $(OBJS) $(CC) $(CFLAGS) $(OBJS) $(SPSLIB) -lm $(SOLARIS_LIBW) -o selectcomm.o: select.h message.h unix.hparser.o: interp.h unix.hinterp.o: interp.h $(SINC)/esps.h $(SINC)/fea.h message.h unix.hio.o: select.h message.h unix.hmath.o: message.h unix.hselect.o: select.h message.h unix.hvgrind: vgrind $(CSRCS) parser.y lexan.llint: $(CSRCS) parser.c lexan.c select.h interp.h message.h unix.h $(LINT) $(LINTFLAGS) $(CSRCS) parser.c lexan.c $(LINTLIB) -lm > lintinstall: select -mv -f $(BINDIR)/select $(OLDBIN)/select -chmod $(PROGMOD) $(OLDBIN)/select -rm -f $(BINDIR)/select -rm -f $(BINDIR)/eselect mv select $(BINDIR)/select -strip $(BINDIR)/select chmod $(PROGMOD) $(BINDIR)/select ln $(BINDIR)/select $(BINDIR)/eselect -rm -f $(MANDIR)/man1/select.1t -rm -f $(MANDIR)/man1/eselect.1t cp select.1t $(MANDIR)/man1/select.1t chmod $(MANMOD) $(MANDIR)/man1/select.1t ln $(MANDIR)/man1/select.1t $(MANDIR)/man1/eselect.1t rm -f $(LIBDIR)/select.hlp cp select.hlp $(LIBDIR)/select.hlp chmod $(MANMOD) $(LIBDIR)/select.hlpclean: rm -f parser.c lexan.c *.o select lint y.tab.h y.outputtest: select -select < testfile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -