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

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

.include <bsd.prog.mk>