Mercurial > audlegacy
annotate Plugins/Input/wma/libffwma/Makefile.in @ 1715:14e6dd38e108 trunk
[svn] Fixed 3 warnings, 2 unused variables and 1 missing include
author | js |
---|---|
date | Sat, 16 Sep 2006 10:08:23 -0700 |
parents | 92b4af21e6d2 |
children |
rev | line source |
---|---|
605 | 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:
1412
diff
changeset
|
2 include ../../../../mk/init.mk |
605 | 3 |
4 OBJECTIVE_LIBS_NOINST= libffwma.a | |
5 | |
6 SOURCES= allcodecs.c allformats.c \ | |
7 asf.c avcodec.h avformat.h \ | |
8 avi.h avio.c avio.h aviobuf.c \ | |
9 bswap.h common.c common.h \ | |
10 cutils.c cutils.h dsputil.c dsputil.h \ | |
1124 | 11 fft.c file.c futils.c mdct.c mms.c \ |
605 | 12 os_support.c os_support.h \ |
13 parser.c simple_idct.c simple_idct.h \ | |
1412 | 14 utils.h utils.c wmadata.h wmadec.c mem.c uri.c |
605 | 15 |
1625 | 16 CFLAGS+= $(PICFLAGS) $(GTK_CFLAGS) -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -c -I../../../.. -I../../../../intl |
605 | 17 |
18 OBJECTS=${SOURCES:.c=.o} | |
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:
1412
diff
changeset
|
19 |
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:
1412
diff
changeset
|
20 include ../../../../mk/objective.mk |
1680
92b4af21e6d2
[svn] Fixed some Makefiles to make it work with BSD make.
js
parents:
1625
diff
changeset
|
21 |
92b4af21e6d2
[svn] Fixed some Makefiles to make it work with BSD make.
js
parents:
1625
diff
changeset
|
22 libffwma.a: $(OBJECTS) |
92b4af21e6d2
[svn] Fixed some Makefiles to make it work with BSD make.
js
parents:
1625
diff
changeset
|
23 $(AR) cq $@ $(OBJECTS) |