From: William F. Jolitz Date: Sat, 18 Jan 1992 04:51:20 +0000 (-0800) Subject: 386BSD 0.1 development X-Git-Tag: 386BSD-0.1~938 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/bf8f3fccceecb930ee058df2e8241d09a352289d 386BSD 0.1 development Work on file usr/othersrc/public/shellutils-1.6/shellutils-1.6/Makefile.in Co-Authored-By: Lynne Greer Jolitz Synthesized-from: 386BSD-0.1 --- diff --git a/usr/othersrc/public/shellutils-1.6/shellutils-1.6/Makefile.in b/usr/othersrc/public/shellutils-1.6/shellutils-1.6/Makefile.in new file mode 100644 index 0000000000..fadd7b9171 --- /dev/null +++ b/usr/othersrc/public/shellutils-1.6/shellutils-1.6/Makefile.in @@ -0,0 +1,135 @@ +# Master Makefile for the GNU shell programming utilities. +# Copyright (C) 1991 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +SHELL = /bin/sh + +#### Start of system configuration section. #### + +srcdir = @srcdir@ +@VPATH@ + +# If you use gcc, you should either run the fixincludes script that +# comes with it or else use gcc with the -traditional option. Otherwise +# ioctl calls will be compiled incorrectly on some systems. +CC = @CC@ +AR = ar +# Set RANLIB = echo if your system doesn't have or need ranlib. +RANLIB = @RANLIB@ +# Use cp if you don't have install. +INSTALL = @INSTALL@ +INSTALLDATA = @INSTALLDATA@ + +# Things you might add to DEFS: +# -DSTDC_HEADERS If you have ANSI C headers and libraries. +# -DHAVE_UNISTD_H If you have unistd.h. +# -DUSG If you have System V/ANSI C string and +# memory functions and headers. +# -DCHAR_UNSIGNED If type `char' is unsigned. +# -DSTRERROR_MISSING If you lack strerror function. +# -DVPRINTF_MISSING If you lack vprintf function (but have _doprnt). +# -DDOPRNT_MISSING If you lack _doprnt function. Also need to define +# -DVPRINTF_MISSING. +# -DFTIME_MISSING If you lack ftime system call. +# -DTM_IN_SYS_TIME If you need to include sys/time.h instead of +# time.h to get struct tm. +# -DTM_ZONE_MISSING If you lack tm_zone in struct tm; instead +# use tm_isdst and tzname. +# -DTZNAME_MISSING If you lack tm_zone and tzname; instead use +# tm_isdst and timezone. Also need to define +# TM_ZONE_MISSING. The -u option to date will +# not work. +# -DC_LINE_MISSING If you have struct termios but it lacks the +# c_line member. +# -DNICE_PRIORITY If you lack getpriority and setpriority system +# calls but have nice system call. +# -DWINSIZE_IN_PTEM If your system defines `struct winsize' in sys/ptem.h. +# -DGWINSZ_BROKEN If TIOCGWINSZ is defined but doesn't work. + +DEFS = @DEFS@ + +CDEBUG = -g +CFLAGS = $(CDEBUG) -I. -I../lib -I$(srcdir)/lib $(DEFS) +LDFLAGS = -g +LIBS = @LIBS@ + +prefix = /usr/local +# Prefix for each installed program, normally empty or `g'. +binprefix = +# Prefix for each installed man page, normally empty or `g'. +manprefix = + +# Where to install the executables. +bindir = $(prefix)/bin + +# Where to install the manual pages. +mandir = $(prefix)/man/man1 +# Extension (not including `.') for the installed manual page filenames. +manext = 1 + +#### End of system configuration section. #### + +MDEFINES = bindir='$(bindir)' mandir='$(mandir)' manext='$(manext)' \ +binprefix='$(binprefix)' manprefix='$(manprefix)' \ +LIBS='$(LIBS)' AR='$(AR)' RANLIB='$(RANLIB)' \ +INSTALL='$(INSTALL)' INSTALLDATA='$(INSTALLDATA)' \ +CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)' CC='$(CC)' + +DISTFILES = COPYING COPYING.LIB ChangeLog Makefile.in README configure \ +configure.in + +# Subdirectories to run make in for the primary targets. +SUBDIRS = lib src man + +all: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done +.PHONY: all + +install: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done +.PHONY: install + +tags: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done +.PHONY: tags + +TAGS: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done +.PHONY: TAGS + +mostlyclean: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done +.PHONY: mostlyclean + +clean: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done + rm -f Makefile config.status +.PHONY: clean + +realclean: + for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done + rm -f Makefile config.status +.PHONY: realclean + +dist: + echo shellutils-`sed -e '/version_string/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q < src/version.c` > .fname + rm -rf `cat .fname` + mkdir `cat .fname` + ln $(DISTFILES) `cat .fname` + for dir in $(SUBDIRS); do mkdir `cat .fname`/$$dir; cd $$dir; $(MAKE) $@; cd ..; done + tar chZf `cat .fname`.tar.Z `cat .fname` + rm -rf `cat .fname` .fname +.PHONY: dist