680b396b51
"." means the object directory, so it is just confusing to use it when nothing is included from the object directory unless the object directory is also the source directory. It is confusing for "." not to mean the source directory anyway, so used `-I.'s should be replaced by `-I${.OBJDIR}'.
14 lines
261 B
Makefile
14 lines
261 B
Makefile
# Makefile for xtend (Stark) 10/30/93
|
|
# $Id: Makefile,v 1.2 1995/04/18 01:53:56 jkh Exp $
|
|
|
|
BINMODE= 555
|
|
|
|
PROG= xtend
|
|
SRCS= xtend.c status.c packet.c user.c
|
|
CFLAGS+= -DXTENUNAME=\"xten\" -DXTENGNAME=\"xten\"
|
|
LDADD+= -lutil
|
|
|
|
MAN8= xtend.8
|
|
|
|
.include <bsd.prog.mk>
|