Mercurial > audlegacy
annotate Plugins/Input/sid/Makefile.in @ 1602:216049cb827a trunk
[svn] - correct a typo that Joker pointed out. thanks Joker!
author | yaz |
---|---|
date | Sun, 27 Aug 2006 05:30:12 -0700 |
parents | 2685ac3bd8f6 |
children | e402e0217870 |
rev | line source |
---|---|
602 | 1 include ../../../mk/rules.mk |
2 include ../../../mk/objective.mk | |
599 | 3 |
4 OBJECTIVE_LIBS = libsid.so | |
5 | |
6 ### | |
7 ### Source targets | |
8 ### | |
9 EXTRA_DIST = xmms-sid-logo.xpm | |
10 | |
11 # Generals | |
12 CFLAGS += -fPIC -DPIC -D_REENTRANT $(PLUGIN_CFLAGS) $(SIDPLAY1_INCLUDES) $(SIDPLAY2_INCLUDES) $(BUILDERS_INCLUDES) $(GTK_CFLAGS) -I../../../intl -I../../.. | |
1602
216049cb827a
[svn] - correct a typo that Joker pointed out. thanks Joker!
yaz
parents:
1597
diff
changeset
|
13 CXXFLAGS += -fPIC -DPIC -D_REENTRANT $(PLUGIN_CFLAGS) $(SIDPLAY1_INCLUDES) $(SIDPLAY2_INCLUDES) $(BUILDERS_INCLUDES) $(GTK_CFLAGS) -I../../../intl -I../../.. |
599 | 14 |
15 # Generated libraries | |
16 | |
17 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
18 | |
803
93c749c9e794
[svn] Don't override input LD_FLAGS - needed to enable profiling.
nemo
parents:
676
diff
changeset
|
19 LDFLAGS += $(BUILDERS_LDFLAGS) |
663
de036d09f9f7
[svn] Link against libstdc++ because we're intermixing code.
nenolod
parents:
621
diff
changeset
|
20 LIBADD = $(SIDPLAY1_LDADD) $(SIDPLAY2_LDADD) $(RESID_LDADD) $(HARDSID_LDADD) $(GTK_LIBS) -lstdc++ |
599 | 21 SOURCES = \ |
22 xs_init.c \ | |
23 xs_about.c \ | |
24 xs_support.c \ | |
25 xs_config.c \ | |
26 xs_md5.c \ | |
27 xs_length.c \ | |
28 xs_genui.c \ | |
29 xs_glade.c \ | |
30 xs_interface.c \ | |
31 xs_stil.c \ | |
32 xs_title.c \ | |
33 xs_fileinfo.c \ | |
34 xs_filter.c \ | |
35 xs_sidplay1.cc \ | |
36 xs_sidplay2.cc \ | |
37 xmms-sid.c | |
38 | |
621 | 39 OBJECTS1 = ${SOURCES:.c=.o} |
40 OBJECTS = ${OBJECTS1:.cc=.o} |