8962635a7b
1) malloc.h doesn't exits in 2.0. 2) Makefile.inc wasn't picked up so one of the build steps (install?) failed. 3) LIBMD wasn't depended on. 4) "ctm foo" dumped core because "foo" doesn't have a '.' in it. Bruce I updated the mkCTM stuff while I was at it anyway. /phk Reviewed by: phk Submitted by: bde
19 lines
621 B
Makefile
19 lines
621 B
Makefile
#
|
|
# ----------------------------------------------------------------------------
|
|
# "THE BEER-WARE LICENSE" (Revision 42):
|
|
# <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
|
|
# can do whatever you want with this stuff. If we meet some day, and you think
|
|
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
# $Id: Makefile,v 1.5 1994/09/22 02:49:22 phk Exp $
|
|
#
|
|
PROG= ctm_scan
|
|
LDADD+= -lmd
|
|
DPADD+= ${LIBMD}
|
|
NOMAN= 1
|
|
CFLAGS+= -Wall
|
|
|
|
.include "../../Makefile.inc"
|
|
.include <bsd.prog.mk>
|