mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 05:49:27 +00:00
698f86e401
Support Hours & Minutes Add -Wall to Makefile
11 lines
204 B
Makefile
11 lines
204 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
# $Id: Makefile,v 1.5 1997/08/04 03:37:05 brian Exp $
|
|
|
|
PROG= date
|
|
SRCS= date.c netdate.c vary.c
|
|
CFLAGS+=-Wall
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
.include <bsd.prog.mk>
|