annotate src/flac/plugin_common/Makefile @ 29:6240912bf874 trunk

[svn] - here too
author nenolod
date Mon, 18 Sep 2006 04:13:46 -0700
parents eab0c4241348
children a19f24790f3c
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 \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
14 tags.h
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
15
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
16 SOURCES = \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
17 charset.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
18 dither.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
19 tags.c
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
20
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
21 OBJECTS = ${SOURCES:.c=.o}
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 libplugin_common.a: $(OBJECTS)
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
24 $(AR) cq $@ $(OBJECTS)
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
25
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
26 include ../../../mk/objective.mk