blob: fb458b5690474c042ec84d3a04468c94c2a03ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.1 2021/12/14 10:34:07 nia Exp $
# The provided CMake file doesn't handle man page installation the
# proper way, and it's simple enough that we might as well rewrite it
# and avoid the CMake dependency entirely.
all: ddate
ddate: ddate.o
$(CC) $(LDFLAGS) -o ddate ddate.o
ddate.o: ddate.c
$(CC) $(CFLAGS) -c ddate.c
|