annotate Plugins/Input/aac/mp4ff/Makefile.in @ 1680:92b4af21e6d2 trunk

[svn] Fixed some Makefiles to make it work with BSD make. I checked that it doesn't break gmake (compile & run works).
author js
date Wed, 13 Sep 2006 13:56:08 -0700
parents 79891e2fd8a5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1020
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
1 include ../../../../mk/rules.mk
1615
e402e0217870 [svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents: 1033
diff changeset
2 include ../../../../mk/init.mk
1020
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
3
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS_NOINST = libmp4ff.a
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
5
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
6 SOURCES = mp4ff.c mp4atom.c mp4meta.c mp4sample.c mp4util.c \
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
7 mp4tagupdate.c drms.c
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
8
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
9 OBJECTS = ${SOURCES:.c=.o}
d70514b3b436 [svn] - stuff
nenolod
parents:
diff changeset
10
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1615
diff changeset
11 CFLAGS += $(PICFLAGS) -DUSE_TAGGING=1 -fsigned-char -I../../../.. -I../../../../intl
1615
e402e0217870 [svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents: 1033
diff changeset
12
e402e0217870 [svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents: 1033
diff changeset
13 include ../../../../mk/objective.mk
1680
92b4af21e6d2 [svn] Fixed some Makefiles to make it work with BSD make.
js
parents: 1625
diff changeset
14
92b4af21e6d2 [svn] Fixed some Makefiles to make it work with BSD make.
js
parents: 1625
diff changeset
15 libmp4ff.a: $(OBJECTS)
92b4af21e6d2 [svn] Fixed some Makefiles to make it work with BSD make.
js
parents: 1625
diff changeset
16 $(AR) cq $@ $(OBJECTS)