File: Makefile.am

package info (click to toggle)
xmms-bumpscope 0.0.3.release-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 796 kB
  • ctags: 122
  • sloc: sh: 7,796; ansic: 3,884; makefile: 56; asm: 45
file content (22 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib_LTLIBRARIES = libbumpscope.la

libdir = $(plugindir)/$(VISUALIZATION_PLUGIN_DIR)

libbumpscope_la_LDFLAGS = -module -avoid-version
LIBS = @GTK_LIBS@

COMMON_CFLAGS = -O2 -I$(top_builddir) -I$(top_srcdir) -D_REENTRANT @GTK_CFLAGS@
COMMON_SRC = bump_scope.c bump_scope.h bump_scope_config.c xmms_logo.h

if ARCH_X86

EXTRA_CFLAGS = -DX86_ASM_OPT
EXTRA_SRC = blur_8.s

endif

EXTRA_DIST = blur_8.s

CFLAGS = $(COMMON_CFLAGS) $(EXTRA_CFLAGS)
libbumpscope_la_SOURCES =  $(COMMON_SRC) $(EXTRA_SRC)