annotate src/flac/plugin_common/Makefile @ 22:eab0c4241348 trunk

[svn] - finish up on the Makefile reduction
author nenolod
date Mon, 18 Sep 2006 03:53:06 -0700
parents
children 6240912bf874
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
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
4 CFLAGS += $(PICFLAGS) -I.. -I../../../..
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