File: Makefile.am

package info (click to toggle)
alsaplayer 0.99.82-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (41 lines) | stat: -rw-r--r-- 984 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
SUBDIRS = pixmaps

if HAVE_GTK2

gtk2_interfaceltlibs = libgtk2_interface.la
gtk2_interfaceldflags = -export-dynamic -avoid-version
gtk2_interfacesources = PlaylistWindow.cpp ScopesWindow.h  \
	gtk.cpp PlaylistWindow.h ScopesWindow.cpp \
	gtk_interface.cpp gtk_interface.h AboutWindow.cpp AboutWindow.h \
	info_window.cpp info_window.h PreferencesWindow.h PreferencesWindow.cpp

else

gtk2_interfaceltlibs =
gtk2_interfaceldflags =
gtk2_interfacesources =

endif

if HAVE_SYSTRAY

gtk2_systraysources = StatusIcon.h StatusIcon.cpp

else

gtk2_systraysources =

endif

lib_LTLIBRARIES = $(gtk2_interfaceltlibs)

AM_CXXFLAGS = @DFLAGS@ -D_REENTRANT -I$(top_builddir) \
		-I$(top_srcdir)/libalsaplayer -I$(top_srcdir)/alsaplayer \
		@GTK2_CFLAGS@ -DADDON_DIR=\"$(ADDON_DIR)\"

libdir = $(ADDON_DIR)/interface

libgtk2_interface_la_LDFLAGS = $(gtk2_interfaceldflags)
libgtk2_interface_la_LIBADD = @GTK2_LIBS@
libgtk2_interface_la_SOURCES= $(gtk2_interfacesources) $(gtk2_systraysources)