1998-01-16 04:16:17 +00:00
|
|
|
#
|
|
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
1998-04-22 05:22:44 +00:00
|
|
|
# $Id: Makefile,v 1.4 1998/04/22 05:22:35 gdr-ftp Exp $
|
1998-01-16 04:16:17 +00:00
|
|
|
#
|
|
|
|
# Created by Dave Tribby, December 1997
|
|
|
|
|
|
|
|
PROG= cksum
|
|
|
|
SRCS= cksum.c crc.c print.c sum1.c sum2.c crc32.c
|
1998-02-15 00:25:48 +00:00
|
|
|
BINDIR= /usr/bin
|
1998-01-16 04:16:17 +00:00
|
|
|
|
1998-04-22 05:22:44 +00:00
|
|
|
HAS_MKSO_DATA = true
|
|
|
|
HAS_MKLINK_DATA = true
|
|
|
|
|
1998-01-16 04:16:17 +00:00
|
|
|
.INCLUDE : /src/gno/prog.mk
|
|
|
|
|
1998-04-22 05:22:44 +00:00
|
|
|
# Under UNIX, cksum whould be linked to sum (and cksum.1 to sum.1)
|
1998-01-16 04:16:17 +00:00
|
|
|
# For GNO, just copy the program. (Need to invoke "dmake sum")
|
|
|
|
sum: cksum
|
|
|
|
cp cksum sum
|
|
|
|
|
|
|
|
#
|
|
|
|
# Additional dependancies
|
|
|
|
#
|
1998-03-08 17:33:34 +00:00
|
|
|
cksum.o: extern.h
|
|
|
|
print.o: extern.h
|