head	1.3;
access;
symbols
	RELEASE_8_3_0:1.3
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.3
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.3
	RELEASE_4_6_2:1.3
	RELEASE_4_6_1:1.3
	RELEASE_4_6_0:1.3
	RELEASE_5_0_DP1:1.3
	RELEASE_4_5_0:1.3
	RELEASE_4_4_0:1.3
	RELEASE_4_3_0:1.3
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.3
	RELEASE_3_5_0:1.3
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.1.1.1
	RELEASE_2_2_8:1.1.1.1
	RELEASE_3_0_0:1.1.1.1
	RELEASE_2_2_7:1.1.1.1
	RELEASE_2_2_6:1.1.1.1
	RELEASE_2_2_5:1.1.1.1
	macutils:1.1.1.1
	SUTTON:1.1.1;
locks; strict;
comment	@# @;


1.3
date	2000.06.12.07.43.06;	author sobomax;	state Exp;
branches;
next	1.2;

1.2
date	99.04.16.08.08.01;	author mharo;	state Exp;
branches;
next	1.1;

1.1
date	97.06.04.03.46.57;	author asami;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	97.06.04.03.46.57;	author asami;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Several cleanups:
- Use MASTER_SITE_SUNSITE to MASTER_SITES;
- Support CFLAGS/MAKE properly;
- Sort pkg/PLIST;
- Use archivers as a primary category (forgotten by will after repo-copy).

PR:		19164
Submitted by:	KATO Tsuguru <tkato@@prontomail.ne.jp>
@
text
@--- makefile.orig	Sun Oct  3 05:16:00 1993
+++ makefile	Sat Jun 10 13:35:16 2000
@@@@ -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 @@@@
 #
 # -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)/.
@


1.2
log
@updated mastersite path.  now compiles with lots less warnings
@
text
@d1 2
a2 2
--- makefile.orig	Sat Oct  2 13:16:00 1993
+++ makefile	Fri Apr 16 00:10:58 1999
d4 1
a4 1
-SHELL =	/bin/sh
a5 1
+SHELL =		/bin/sh
d9 1
a9 1
@@@@ -24,7 +23,7 @@@@
d14 1
a14 1
+CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DAUFSPLUS ${CFLAGS}
d17 67
a83 1
 	(cd crc; make CF='$(CF)')
@


1.1
log
@Initial revision
@
text
@d1 18
a18 31
*** makefile.orig	Mon Apr 14 16:15:21 1997
--- makefile	Mon Apr 14 16:34:14 1997
***************
*** 1,5 ****
! 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
--- 1,4 ----
! SHELL =		/bin/sh
  # Use the following flags on the CF macro definition as needed.
  #
  # -DBSD if you are on a BSD system
***************
*** 24,30 ****
  #
  # -DAPPLEDOUBLE if you want to be able to use an AppleDouble file system
  #
! CF =	-DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DNODOT -DAPPLEDOUBLE
  
  all:
  	(cd crc; make CF='$(CF)')
--- 23,29 ----
  #
  # -DAPPLEDOUBLE if you want to be able to use an AppleDouble file system
  #
! CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DAUFSPLUS 
  
  all:
  	(cd crc; make CF='$(CF)')
@


1.1.1.1
log
@A set of utilities to play with Macintosh format files.

PR:		3626
Submitted by:	Joel Sutton <sutton@@aardvark.apana.org.au>
@
text
@@
