freebsd-dev/usr.sbin/ctm/ctm_scan/Makefile
Poul-Henning Kamp 8962635a7b These patches fix some lesser problems:
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
1994-10-24 20:09:39 +00:00

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>