mirror of
https://github.com/alexkay/spek.git
synced 2025-06-05 09:53:07 +03:00
libspek
This commit is contained in:
parent
9918fec952
commit
bcdc33223f
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
*.a
|
||||||
*.msi
|
*.msi
|
||||||
*.o
|
*.o
|
||||||
*.xz
|
*.xz
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
data \
|
data \
|
||||||
|
lib \
|
||||||
man \
|
man \
|
||||||
po \
|
po \
|
||||||
src \
|
src \
|
||||||
|
@ -6,6 +6,7 @@ AM_SILENT_RULES([yes])
|
|||||||
|
|
||||||
AC_PROG_CC_C99
|
AC_PROG_CC_C99
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
|
AC_PROG_RANLIB
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
IT_PROG_INTLTOOL([0.40.0])
|
IT_PROG_INTLTOOL([0.40.0])
|
||||||
|
|
||||||
@ -65,6 +66,7 @@ AC_CONFIG_FILES([
|
|||||||
data/icons/scalable/Makefile
|
data/icons/scalable/Makefile
|
||||||
dist/osx/spek.modules
|
dist/osx/spek.modules
|
||||||
dist/win/spek.wxs
|
dist/win/spek.wxs
|
||||||
|
lib/Makefile
|
||||||
man/Makefile
|
man/Makefile
|
||||||
man/spek.1
|
man/spek.1
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
|
18
lib/Makefile.am
Normal file
18
lib/Makefile.am
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
noinst_LIBRARIES = libspek.a
|
||||||
|
|
||||||
|
libspek_a_SOURCES = \
|
||||||
|
spek-audio.c \
|
||||||
|
spek-audio.h \
|
||||||
|
spek-fft.c \
|
||||||
|
spek-fft.h \
|
||||||
|
spek-palette.c \
|
||||||
|
spek-palette.h \
|
||||||
|
spek-pipeline.c \
|
||||||
|
spek-pipeline.h
|
||||||
|
|
||||||
|
libspek_a_CPPFLAGS = \
|
||||||
|
-include config.h \
|
||||||
|
-pthread
|
||||||
|
|
||||||
|
libspek_a_CFLAGS = \
|
||||||
|
$(FFMPEG_CFLAGS)
|
@ -3,16 +3,8 @@ bin_PROGRAMS = spek
|
|||||||
spek_SOURCES = \
|
spek_SOURCES = \
|
||||||
spek-audio-desc.cc \
|
spek-audio-desc.cc \
|
||||||
spek-audio-desc.hh \
|
spek-audio-desc.hh \
|
||||||
spek-audio.c \
|
|
||||||
spek-audio.h \
|
|
||||||
spek-events.cc \
|
spek-events.cc \
|
||||||
spek-events.hh \
|
spek-events.hh \
|
||||||
spek-fft.c \
|
|
||||||
spek-fft.h \
|
|
||||||
spek-palette.c \
|
|
||||||
spek-palette.h \
|
|
||||||
spek-pipeline.c \
|
|
||||||
spek-pipeline.h \
|
|
||||||
spek-platform.cc \
|
spek-platform.cc \
|
||||||
spek-platform.hh \
|
spek-platform.hh \
|
||||||
spek-preferences-dialog.cc \
|
spek-preferences-dialog.cc \
|
||||||
@ -30,16 +22,14 @@ spek_SOURCES = \
|
|||||||
spek_CPPFLAGS = \
|
spek_CPPFLAGS = \
|
||||||
-include config.h \
|
-include config.h \
|
||||||
-pthread \
|
-pthread \
|
||||||
|
-I$(top_srcdir)/lib \
|
||||||
$(WX_CPPFLAGS)
|
$(WX_CPPFLAGS)
|
||||||
|
|
||||||
spek_CFLAGS = \
|
|
||||||
$(FFMPEG_CFLAGS) \
|
|
||||||
$(WX_CFLAGS_ONLY)
|
|
||||||
|
|
||||||
spek_CXXFLAGS = \
|
spek_CXXFLAGS = \
|
||||||
$(WX_CXXFLAGS_ONLY)
|
$(WX_CXXFLAGS_ONLY)
|
||||||
|
|
||||||
spek_LDADD = \
|
spek_LDADD = \
|
||||||
|
../lib/libspek.a \
|
||||||
$(FFMPEG_LIBS) \
|
$(FFMPEG_LIBS) \
|
||||||
$(WX_LIBS)
|
$(WX_LIBS)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user