annotate src/skins/Makefile @ 3182:631d217913e0

alsa-ng: Fix arithmetic overflow on 32-bit systems.
author John Lindgren <john.lindgren@tds.net>
date Fri, 12 Jun 2009 09:17:09 -0400
parents b34c4e3d9488
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2572
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
1 PLUGIN = skins${PLUGIN_SUFFIX}
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
2
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
3 SRCS = plugin.c \
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
4 skins_cfg.c \
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
5 pixbuf_effects.c \
2629
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents: 2627
diff changeset
6 dnd.c \
2572
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
7 ui_skin.c \
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
8 ui_skinned_window.c \
2573
c0b08527b121 allow loading compressed skins
Tomasz Mon <desowin@gmail.com>
parents: 2572
diff changeset
9 ui_dock.c \
2579
8fba3fbf1a0f add vis and svis
Tomasz Mon <desowin@gmail.com>
parents: 2573
diff changeset
10 util.c \
8fba3fbf1a0f add vis and svis
Tomasz Mon <desowin@gmail.com>
parents: 2573
diff changeset
11 ui_vis.c \
2581
6a0755e8c1b3 add ui_skinned_menurow
Tomasz Mon <desowin@gmail.com>
parents: 2579
diff changeset
12 ui_svis.c \
2585
43bac1471075 add ui_skinned_button
Tomasz Mon <desowin@gmail.com>
parents: 2581
diff changeset
13 ui_skinned_menurow.c \
2586
88009fb3fbe6 add ui_skinned_textbox
Tomasz Mon <desowin@gmail.com>
parents: 2585
diff changeset
14 ui_skinned_button.c \
2587
792db8ee6d0a add ui_skinned_monostereo and ui_skinned_playstatus
Tomasz Mon <desowin@gmail.com>
parents: 2586
diff changeset
15 ui_skinned_textbox.c \
792db8ee6d0a add ui_skinned_monostereo and ui_skinned_playstatus
Tomasz Mon <desowin@gmail.com>
parents: 2586
diff changeset
16 ui_skinned_playstatus.c \
2588
fa798fbd5fe9 add ui_skinned_number
Tomasz Mon <desowin@gmail.com>
parents: 2587
diff changeset
17 ui_skinned_monostereo.c \
2589
edf99201700e add ui_skinned_horizontal_slider
Tomasz Mon <desowin@gmail.com>
parents: 2588
diff changeset
18 ui_skinned_number.c \
2591
e6f015ac0421 add ui_skinned_equalizer_graph
Tomasz Mon <desowin@gmail.com>
parents: 2589
diff changeset
19 ui_skinned_horizontal_slider.c \
2592
8f5999909416 add ui_main - with huge amount of #if 0 to sort out later
Tomasz Mon <desowin@gmail.com>
parents: 2591
diff changeset
20 ui_skinned_equalizer_graph.c \
2605
ecd8b5653c30 add ui_skinned_equalizer_slider
Tomasz Mon <desowin@gmail.com>
parents: 2602
diff changeset
21 ui_skinned_equalizer_slider.c \
2620
2d6e08c81c09 add playlistwindow
Tomasz Mon <desowin@gmail.com>
parents: 2614
diff changeset
22 ui_skinned_playlist.c \
2d6e08c81c09 add playlistwindow
Tomasz Mon <desowin@gmail.com>
parents: 2614
diff changeset
23 ui_skinned_playlist_slider.c \
2602
7cd898f08f31 work in progress - add ui_manager and ui_main_evlisteners
Tomasz Mon <desowin@gmail.com>
parents: 2592
diff changeset
24 ui_main.c \
2606
b53841a1b5d3 add ui_equalizer
Tomasz Mon <desowin@gmail.com>
parents: 2605
diff changeset
25 ui_equalizer.c \
2620
2d6e08c81c09 add playlistwindow
Tomasz Mon <desowin@gmail.com>
parents: 2614
diff changeset
26 ui_playlist.c \
2789
b34c4e3d9488 copy playlist manager into skins plugin
Tomasz Mon <desowin@gmail.com>
parents: 2675
diff changeset
27 ui_playlist_manager.c \
2602
7cd898f08f31 work in progress - add ui_manager and ui_main_evlisteners
Tomasz Mon <desowin@gmail.com>
parents: 2592
diff changeset
28 ui_main_evlisteners.c \
2620
2d6e08c81c09 add playlistwindow
Tomasz Mon <desowin@gmail.com>
parents: 2614
diff changeset
29 ui_playlist_evlisteners.c \
2602
7cd898f08f31 work in progress - add ui_manager and ui_main_evlisteners
Tomasz Mon <desowin@gmail.com>
parents: 2592
diff changeset
30 ui_manager.c \
2626
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents: 2620
diff changeset
31 ui_hints.c \
2675
4beebb0e82f8 add ui_skinselector
Tomasz Mon <desowin@gmail.com>
parents: 2640
diff changeset
32 ui_skinselector.c \
2602
7cd898f08f31 work in progress - add ui_manager and ui_main_evlisteners
Tomasz Mon <desowin@gmail.com>
parents: 2592
diff changeset
33 icons-stock.c
2572
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
34
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
35 include ../../buildsys.mk
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
36 include ../../extra.mk
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
37
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
38 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR}
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
39
2627
c0a35d3d5bb9 use in Makefile
Tomasz Mon <desowin@gmail.com>
parents: 2626
diff changeset
40 CFLAGS += ${PLUGIN_CFLAGS} ${BEEP_DEFINES}
2572
d0daee216c8d stub (really incomplete) for skin engine plugin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
41 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${CAIRO_CFLAGS} ${PANGOCAIRO_CFLAGS} ${XRENDER_CFLAGS} ${XCOMPOSITE_CFLAGS} -I../..
2620
2d6e08c81c09 add playlistwindow
Tomasz Mon <desowin@gmail.com>
parents: 2614
diff changeset
42 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${CAIRO_LIBS} ${PANGOCAIRO_LIBS} ${XRENDER_LIBS} ${XCOMPOSITE_LIBS} ${MOWGLI_LIBS}