Mercurial > audlegacy
annotate src/audacious/intl/Makefile @ 3089:f40b8491a812
Remove genevent, seperate playback logic into seperate control thread.
This still has bugs, so watch out.
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Mon, 16 Jul 2007 15:50:32 -0500 |
parents | e50fd4eefa5f |
children | 9ddf21ab5c84 |
rev | line source |
---|---|
3043
59452118044d
MacOS (and others): Relocate libintl to a location where audacious can link to it automatically.
William Pitcock <nenolod@atheme-project.org>
parents:
2691
diff
changeset
|
1 include ../../../mk/rules.mk |
59452118044d
MacOS (and others): Relocate libintl to a location where audacious can link to it automatically.
William Pitcock <nenolod@atheme-project.org>
parents:
2691
diff
changeset
|
2 include ../../../mk/init.mk |
2313 | 3 |
4 localedir = $(datadir)/locale | |
5 gettextsrcdir = $(datadir)/gettext/intl | |
6 aliaspath = $(localedir) | |
7 | |
8 OBJECTIVE_LIBS_NOINST = libintl.a | |
9 | |
10 DEFS += -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ | |
3047
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
11 -DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \ |
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
12 -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DINSTALLPREFIX=\"$(libdir)\" -DNO_XMALLOC \ |
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
13 -Dset_relocation_prefix=libintl_set_relocation_prefix \ |
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
14 -Drelocate=libintl_relocate \ |
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
15 -DDEPENDS_ON_LIBICONV=1 |
2313 | 16 |
3047
e50fd4eefa5f
Fix Makefile rules.
William Pitcock <nenolod@atheme-project.org>
parents:
3043
diff
changeset
|
17 CFLAGS += $(PICFLAGS) -I../../.. -I../.. -I. $(DEFS) |
2313 | 18 |
19 SOURCES = \ | |
20 bindtextdom.c \ | |
21 dcgettext.c \ | |
22 dgettext.c \ | |
23 gettext.c \ | |
24 finddomain.c \ | |
25 loadmsgcat.c \ | |
26 localealias.c \ | |
27 textdomain.c \ | |
28 l10nflist.c \ | |
29 explodename.c \ | |
30 dcigettext.c \ | |
31 dcngettext.c \ | |
32 dngettext.c \ | |
33 ngettext.c \ | |
34 plural.c \ | |
35 plural-exp.c \ | |
36 localcharset.c \ | |
37 relocatable.c \ | |
38 localename.c \ | |
39 log.c \ | |
40 osdep.c \ | |
41 os2compat.c \ | |
42 intl-compat.c | |
43 | |
44 OBJECTS = ${SOURCES:.c=.o} | |
45 | |
3043
59452118044d
MacOS (and others): Relocate libintl to a location where audacious can link to it automatically.
William Pitcock <nenolod@atheme-project.org>
parents:
2691
diff
changeset
|
46 include ../../../mk/objective.mk |