spek

Acoustic spectrum analyser https://github.com/alexkay/spek spek.cc
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

Makefile.am (1012B)


      1 noinst_LIBRARIES = libspek.a
      2 
      3 libspek_a_SOURCES = \
      4 	spek-audio.cc \
      5 	spek-audio.h \
      6 	spek-fft.cc \
      7 	spek-fft.h \
      8 	spek-palette.cc \
      9 	spek-palette.h \
     10 	spek-pipeline.cc \
     11 	spek-pipeline.h \
     12 	spek-utils.cc \
     13 	spek-utils.h
     14 
     15 libspek_a_CPPFLAGS = \
     16 	-include config.h \
     17 	-pthread \
     18 	$(WX_CPPFLAGS)
     19 
     20 libspek_a_CXXFLAGS = \
     21 	$(AVFORMAT_CFLAGS) \
     22 	$(AVCODEC_CFLAGS) \
     23 	$(AVUTIL_CFLAGS) \
     24 	$(WX_CXXFLAGS_ONLY)
     25 
     26 bin_PROGRAMS = spek
     27 
     28 spek_SOURCES = \
     29 	spek-artwork.cc \
     30 	spek-artwork.h \
     31 	spek-events.cc \
     32 	spek-events.h \
     33 	spek-platform.cc \
     34 	spek-platform.h \
     35 	spek-preferences-dialog.cc \
     36 	spek-preferences-dialog.h \
     37 	spek-preferences.cc \
     38 	spek-preferences.h \
     39 	spek-ruler.cc \
     40 	spek-ruler.h \
     41 	spek-spectrogram.cc \
     42 	spek-spectrogram.h \
     43 	spek-window.cc \
     44 	spek-window.h \
     45 	spek.cc
     46 
     47 spek_CPPFLAGS = \
     48 	-include config.h \
     49 	-pthread \
     50 	$(WX_CPPFLAGS)
     51 
     52 spek_CXXFLAGS = \
     53 	$(WX_CXXFLAGS_ONLY)
     54 
     55 spek_LDADD = \
     56 	libspek.a \
     57 	$(AVFORMAT_LIBS) \
     58 	$(AVCODEC_LIBS) \
     59 	$(AVUTIL_LIBS) \
     60 	$(WX_LIBS)
     61 
     62 spek_LDFLAGS = \
     63 	-pthread