annotate src/flac/plugin_common/Makefile @ 97:a19f24790f3c trunk

[svn] It compiles now.
author chainsaw
date Sat, 21 Oct 2006 18:02:01 -0700
parents 6240912bf874
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
1 include ../../../mk/rules.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
2 include ../../../mk/init.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
3
29
6240912bf874 [svn] - here too
nenolod
parents: 22
diff changeset
4 CFLAGS += $(PICFLAGS) -I.. -I../../..
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
5
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
6 OBJECTIVE_LIBS_NOINST = libplugin_common.a
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
7
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
8 noinst_HEADERS = \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
9 all.h \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
10 charset.h \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
11 defs.h \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
12 dither.h \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
13 locale_hack.h \
97
a19f24790f3c [svn] It compiles now.
chainsaw
parents: 29
diff changeset
14 tags.h \
a19f24790f3c [svn] It compiles now.
chainsaw
parents: 29
diff changeset
15 replaygain.h
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
16
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
17 SOURCES = \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
18 charset.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
19 dither.c \
97
a19f24790f3c [svn] It compiles now.
chainsaw
parents: 29
diff changeset
20 tags.c \
a19f24790f3c [svn] It compiles now.
chainsaw
parents: 29
diff changeset
21 replaygain.c
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
23 OBJECTS = ${SOURCES:.c=.o}
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
24
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
25 libplugin_common.a: $(OBJECTS)
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
26 $(AR) cq $@ $(OBJECTS)
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
27
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
28 include ../../../mk/objective.mk