aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5bcfce561e940bb1623a45900a5b3eb7b2c943b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $Id$

PROG=	spectrogram
SRCS=	spectrogram.c sio.c fft.c hsv2rgb.c
HEADERS=fft.h hsv2rgb.h
LIBS=	fftw3 x11
PCCF!=	pkg-config --cflags ${LIBS}
PCLA!=	pkg-config --libs ${LIBS}
CFLAGS+=${PCCF}
LDADD+=	${PCLA} -lsndio
DEBUG+=	-Wall
NOMAN=

.include <bsd.prog.mk>