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

PROG=	spectrogram
SRCS=	spectrogram.c alsa.c fft.c cms.c aux.c
BINDIR=	/usr/local/bin
LIBS=	fftw3 x11 alsa
PCCF!=	pkg-config --cflags ${LIBS}
PCLA!=	pkg-config --libs ${LIBS}
CFLAGS+=${PCCF}
LDADD+=	${PCLA}
DEBUG+=	-Wall
NOMAN=

.include <bsd.prog.mk>