# $Id: Makefile,v 1.1 2020/06/20 22:38:55 absc Exp $

PROG=		simple-get

MAN=
SRCS=		simple-get.c

CFLAGS+=		-I/usr/local/include

COPTS+=		-Wall -Wmissing-prototypes -Wmissing-declarations
COPTS+=		-Wstrict-prototypes -Wshadow -Wpointer-arith -Wcast-qual
COPTS+=		-Wsign-compare

LDFLAGS+=	-L/usr/local/lib

LDADD=		-lapi -lcurl

.include <bsd.prog.mk>

