aboutsummaryrefslogtreecommitdiff
path: root/Makefile.linux
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2013-07-02 15:30:29 +0000
committerDimitri Sokolyuk <demon@dim13.org>2013-07-02 15:30:29 +0000
commit59d91966e83f7bbe6231eec945e2f93d17b2e3e2 (patch)
tree2e8df9ea3fce8caf22bc7b75304a16945bc58d3d /Makefile.linux
parenta8655ac4cb70abe872361e3f2978d6edf591cfad (diff)
add linux support
Diffstat (limited to 'Makefile.linux')
-rw-r--r--Makefile.linux15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.linux b/Makefile.linux
new file mode 100644
index 0000000..14b5a14
--- /dev/null
+++ b/Makefile.linux
@@ -0,0 +1,15 @@
+# $Id$
+
+PROG= spectrogram
+SRCS= spectrogram.c alsa.c fft.c hsv2rgb.c
+BINDIR= /usr/local/bin
+HEADERS=fft.h hsv2rgb.h
+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>