diff options
author | Rene Ladan <rene@FreeBSD.org> | 2017-03-19 12:58:36 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2017-03-19 12:58:36 +0000 |
commit | 34bc427566af8024a4bf3672f258637f62b6c4a2 (patch) | |
tree | a25e4ea25940f1583e6a06ec8b816d5b039db056 /archivers/macutils/files/patch-makefile | |
parent | - update to 20170319 (diff) |
Remove expired port:
2017-03-17 archivers/macutils: Not maintained in 16 years, many missing header inclusions
Diffstat (limited to 'archivers/macutils/files/patch-makefile')
-rw-r--r-- | archivers/macutils/files/patch-makefile | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/archivers/macutils/files/patch-makefile b/archivers/macutils/files/patch-makefile deleted file mode 100644 index 0c381564f8d5..000000000000 --- a/archivers/macutils/files/patch-makefile +++ /dev/null @@ -1,83 +0,0 @@ ---- makefile.orig 1993-10-02 20:16:00 UTC -+++ makefile -@@ -1,5 +1,4 @@ - SHELL = /bin/sh --BINDIR = /ufs/dik/tmpbin - # Use the following flags on the CF macro definition as needed. - # - # -DBSD if you are on a BSD system -@@ -24,44 +23,44 @@ BINDIR = /ufs/dik/tmpbin - # - # -DAPPLEDOUBLE if you want to be able to use an AppleDouble file system - # --CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DNODOT -DAPPLEDOUBLE -+CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DAUFSPLUS ${CFLAGS} - - all: -- (cd crc; make CF='$(CF)') -- (cd util; make CF='$(CF)') -- (cd fileio; make CF='$(CF)') -- (cd macunpack; make CF='$(CF)') -- (cd hexbin; make CF='$(CF)') -- (cd mixed; make CF='$(CF)') -- (cd binhex; make CF='$(CF)') -- (cd comm; make CF='$(CF)') -+ (cd crc; $(MAKE) CFLAGS='$(CF)') -+ (cd util; $(MAKE) CFLAGS='$(CF)') -+ (cd fileio; $(MAKE) CFLAGS='$(CF)') -+ (cd macunpack; $(MAKE) CFLAGS='$(CF)') -+ (cd hexbin; $(MAKE) CFLAGS='$(CF)') -+ (cd mixed; $(MAKE) CFLAGS='$(CF)') -+ (cd binhex; $(MAKE) CFLAGS='$(CF)') -+ (cd comm; $(MAKE) CFLAGS='$(CF)') - - clean: -- (cd crc; make clean) -- (cd util; make clean) -- (cd fileio; make clean) -- (cd macunpack; make clean) -- (cd hexbin; make clean) -- (cd mixed; make clean) -- (cd binhex; make clean) -- (cd comm; make clean) -+ (cd crc; $(MAKE) clean) -+ (cd util; $(MAKE) clean) -+ (cd fileio; $(MAKE) clean) -+ (cd macunpack; $(MAKE) clean) -+ (cd hexbin; $(MAKE) clean) -+ (cd mixed; $(MAKE) clean) -+ (cd binhex; $(MAKE) clean) -+ (cd comm; $(MAKE) clean) - - clobber: -- (cd crc; make clean) -- (cd util; make clean) -- (cd fileio; make clean) -- (cd macunpack; make clobber) -- (cd hexbin; make clobber) -- (cd mixed; make clobber) -- (cd binhex; make clobber) -- (cd comm; make clobber) -+ (cd crc; (MAKE) clean) -+ (cd util; (MAKE) clean) -+ (cd fileio; (MAKE) clean) -+ (cd macunpack; (MAKE) clobber) -+ (cd hexbin; (MAKE) clobber) -+ (cd mixed; (MAKE) clobber) -+ (cd binhex; (MAKE) clobber) -+ (cd comm; (MAKE) clobber) - - lint: -- (cd macunpack; make CF='$(CF)' lint) -- (cd hexbin; make CF='$(CF)' lint) -- (cd mixed; make CF='$(CF)' lint) -- (cd binhex; make CF='$(CF)' lint) -- (cd comm; make CF='$(CF)' lint) -+ (cd macunpack; (MAKE) CFLAGS='$(CF)' lint) -+ (cd hexbin; (MAKE) CFLAGS='$(CF)' lint) -+ (cd mixed; (MAKE) CFLAGS='$(CF)' lint) -+ (cd binhex; (MAKE) CFLAGS='$(CF)' lint) -+ (cd comm; (MAKE) CFLAGS='$(CF)' lint) - - install: - cp macunpack/macunpack $(BINDIR)/. |