annotate src/timidity/libtimidity/Makefile @ 26:67b56e61de74 trunk

[svn] - fix some build errors
author nenolod
date Mon, 18 Sep 2006 04:09:53 -0700
parents eab0c4241348
children 550c9e382cf8
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 OBJECTIVE_LIBS_NOINST = libtimidity.a
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 SOURCES = \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
7 common.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
8 instrum.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
9 instrum_dls.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
10 mix.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
11 options.h \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
12 output.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
13 playmidi.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
14 readmidi.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
15 resample.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
16 stream.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
17 tables.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
18 timidity.c
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
19
26
67b56e61de74 [svn] - fix some build errors
nenolod
parents: 22
diff changeset
20 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I../../..
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
21
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
22 OBJECTS = ${SOURCES:.c=.o}
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
23
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
24 include ../../../mk/objective.mk
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 libtimidity.a: $(OBJECTS)
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
27 $(AR) cq $@ $(OBJECTS)