Mercurial > audlegacy-plugins
comparison src/flac/Makefile @ 17:cf1054422f81 trunk
[svn] - fix a lot of paths
- reduce more makefiles
author | nenolod |
---|---|
date | Mon, 18 Sep 2006 03:38:44 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
16:ada5b8bf1471 | 17:cf1054422f81 |
---|---|
1 include ../../mk/rules.mk | |
2 include ../../mk/init.mk | |
3 | |
4 SUBDIRS = plugin_common | |
5 | |
6 noinst_HEADERS = \ | |
7 charset.h \ | |
8 configure.h \ | |
9 http.h \ | |
10 plugin.h \ | |
11 tag.h \ | |
12 fast_float_math_hack.h \ | |
13 replaygain_analysis.h \ | |
14 grabbag.h \ | |
15 replaygain_synthesis.h | |
16 | |
17 OBJECTIVE_LIBS = libflac$(SHARED_SUFFIX) | |
18 | |
19 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
20 | |
21 LIBADD = $(LIBFLAC_LIBS) -L./plugin_common -lplugin_common | |
22 | |
23 SOURCES = \ | |
24 charset.c \ | |
25 configure.c \ | |
26 fileinfo.c \ | |
27 http.c \ | |
28 plugin.c \ | |
29 tag.c \ | |
30 replaygain_synthesis.c \ | |
31 replaygain.c \ | |
32 replaygain_analysis.c \ | |
33 file.c | |
34 | |
35 OBJECTS = ${SOURCES:.c=.o} | |
36 | |
37 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I../../intl -I../.. $(LIBFLAC_CFLAGS) | |
38 | |
39 include ../../mk/objective.mk |