summaryrefslogtreecommitdiffstats
path: root/patch_cmds/diffstat/makefile.in
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-09 14:20:58 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-09 14:20:58 -0400
commit5fd83771641d15c418f747bd343ba6738d3875f7 (patch)
tree5abf0f78f680d9837dbd93d4d4c3933bb7509599 /patch_cmds/diffstat/makefile.in
downloadapple_cmds-5fd83771641d15c418f747bd343ba6738d3875f7.tar.gz
apple_cmds-5fd83771641d15c418f747bd343ba6738d3875f7.tar.zst
apple_cmds-5fd83771641d15c418f747bd343ba6738d3875f7.zip
Import macOS userland
adv_cmds-176 basic_cmds-55 bootstrap_cmds-116.100.1 developer_cmds-66 diskdev_cmds-667.40.1 doc_cmds-53.60.1 file_cmds-321.40.3 mail_cmds-35 misc_cmds-34 network_cmds-606.40.1 patch_cmds-17 remote_cmds-63 shell_cmds-216.60.1 system_cmds-880.60.2 text_cmds-106
Diffstat (limited to 'patch_cmds/diffstat/makefile.in')
-rw-r--r--patch_cmds/diffstat/makefile.in144
1 files changed, 144 insertions, 0 deletions
diff --git a/patch_cmds/diffstat/makefile.in b/patch_cmds/diffstat/makefile.in
new file mode 100644
index 0000000..cf18c53
--- /dev/null
+++ b/patch_cmds/diffstat/makefile.in
@@ -0,0 +1,144 @@
+# $Id: makefile.in,v 1.29 2010/07/15 22:45:54 tom Exp $
+# Makefile-template for 'diffstat'
+
+THIS = diffstat
+
+#### Start of system configuration section. ####
+
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+DESTDIR = @DESTDIR@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+mandir = @mandir@
+
+CC = @CC@
+LINK = $(CC)
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+
+LINT = @LINT@
+CTAGS = @CTAGS@
+ETAGS = @ETAGS@
+
+CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@
+CPPFLAGS = -I. -I$(srcdir) -DHAVE_CONFIG_H @CPPFLAGS@
+
+LIBS = @LIBS@
+LDFLAGS = @LDFLAGS@
+
+o = .@OBJEXT@
+x = @EXEEXT@
+
+BINDIR = $(DESTDIR)$(bindir)
+MANDIR = $(DESTDIR)$(mandir)
+
+#### End of system configuration section. ####
+
+SHELL = /bin/sh
+
+man1dir = $(MANDIR)/man1
+manext = 1
+
+PROG = $(THIS)$x
+
+SRC = CHANGES \
+ README $(THIS).c $(THIS).1 \
+ config_h.in install-sh \
+ makefile.in configure.in aclocal.m4 \
+ makefile.wnt
+
+PORTFILES = porting/getopt.c \
+ porting/getopt.h \
+ porting/system.h \
+ porting/wildcard.c
+
+TESTFILES = testing/README \
+ testing/run_test.sh \
+ testing/case0[1-5]*
+
+DISTFILES = configure config.guess config.sub $(SRC)
+
+.SUFFIXES: .c $o
+
+.c$o:
+ @RULE_CC@
+ @ECHO_CC@$(CC) -c $(CPPFLAGS) $(CFLAGS) $<
+
+all : $(PROG)
+
+$(PROG) : diffstat$o
+ @ECHO_LD@$(LINK) $(LDFLAGS) -o $@ diffstat$o $(LIBS)
+
+install : all installdirs
+ $(INSTALL_PROGRAM) $(PROG) $(BINDIR)/$(PROG)
+ $(INSTALL_DATA) $(srcdir)/$(THIS).1 $(man1dir)/$(THIS).$(manext)
+
+installdirs :
+ mkdir -p $(BINDIR) $(libdir) $(man1dir)
+
+uninstall :
+ rm -f $(BINDIR)/$(PROG) $(man1dir)/$(THIS).$(manext)
+
+mostlyclean :
+ rm -f *.o core *~ *.out *.err *.BAK *.atac
+
+clean : mostlyclean
+ rm -f $(PROG)
+
+distclean : clean
+ rm -f makefile config.log config.cache config.status config.h
+ rm -f tags TAGS # don't remove configure!
+
+realclean : distclean
+
+check : $(PROG)
+ $(SHELL) -c 'PATH=`pwd`:$${PATH}; export PATH; \
+ $(SHELL) $(srcdir)/testing/run_test.sh $(srcdir)/testing/case*.pat'
+
+lint :
+ $(LINT) $(CPPFLAGS) $(LINTOPTS) $(THIS).c
+
+tags :
+ $(CTAGS) $(THIS).c $(HDRS)
+
+@MAKE_UPPER_TAGS@TAGS :
+@MAKE_UPPER_TAGS@ $(ETAGS) $(THIS).c $(HDRS)
+
+dist: makefile $(DISTFILES)
+ # make a list of the files to distribute
+ echo $(THIS)-`sed \
+ -e '/"$$[A-Za-z]*: $(THIS)\.c.*$$"/!d' \
+ -e 's/^.*$(THIS)[^ ]*[ ]*//' \
+ -e 's/[ ].*$$//' \
+ -e q $(srcdir)/$(THIS).c` > .fname
+ rm -rf `cat .fname`
+ # contents of top directory
+ mkdir `cat .fname`
+ for file in $(DISTFILES); do \
+ ln $(srcdir)/$$file `cat .fname` \
+ || { echo copying $$file instead; cp -p $$file `cat .fname`; }; \
+ done
+ # contents of top/porting directory
+ mkdir `cat .fname`/porting
+ for file in $(PORTFILES); do \
+ ln $(srcdir)/$$file `cat .fname`/porting \
+ || { echo copying $$file instead; cp -p $$file `cat .fname`/porting; }; \
+ done
+ # contents of top/testing directory
+ mkdir `cat .fname`/testing
+ for file in $(TESTFILES); do \
+ ln $(srcdir)/$$file `cat .fname`/testing \
+ || { echo copying $$file instead; cp -p $$file `cat .fname`/testing; }; \
+ done
+ # tar and cleanup
+ tar -cf - `cat .fname` | gzip >`cat .fname`.tgz
+ rm -rf `cat .fname` .fname
+
+$(THIS).o : config.h
+
+$(SRC) :