mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
23 lines
496 B
Makefile
23 lines
496 B
Makefile
#
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
# $Id: Makefile,v 1.3 1998/03/08 17:33:34 gdr-ftp Exp $
|
|
#
|
|
# Created by Dave Tribby, December 1997
|
|
|
|
PROG= cksum
|
|
SRCS= cksum.c crc.c print.c sum1.c sum2.c crc32.c
|
|
BINDIR= /usr/bin
|
|
|
|
.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
|