1998-01-16 04:16:17 +00:00
|
|
|
#
|
|
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
1998-02-15 00:25:48 +00:00
|
|
|
# $Id: Makefile,v 1.2 1998/02/15 00:25:42 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
|
|
|
|
|
|
|
.INCLUDE : /src/gno/prog.mk
|
|
|
|
|
|
|
|
# Under UNIX, chsum whould be linked to sum (and cksum.1 to sum.1)
|
|
|
|
# For GNO, just copy the program. (Need to invoke "dmake sum")
|
|
|
|
sum: cksum
|
|
|
|
cp cksum sum
|
|
|
|
|
|
|
|
#
|
|
|
|
# Additional dependancies
|
|
|
|
#
|
|
|
|
|
|
|
|
cksum.o:: extern.h
|
|
|
|
print.o:: extern.h
|