Clarify wording in the motion vector decode section.
[xiph/unicode.git] / vorbisfile-python / Makefile
blob6ee37075425f02374d21d397c363322ea66b9797
1 CC=gcc
2 CFLAGS=-g -I/usr/include/python2.3
3 LDFLAGS=-logg -lvorbis -lvorbisfile
5 all: _vorbisfile.so
7 %.o: %.c
8 $(CC) $(CFLAGS) -c $*.c
10 _vorbisfile.so: vorbisfile.o
11 ld -shared vorbisfile.o -o _vorbisfile.so $(LDFLAGS)
13 clean:
14 -rm -f *.o *.so