all: get_bitrate.o gcc -shared get_bitrate.o -lavformat -lavcodec -o libgetbitrate.so get_bitrate.o: ./src/get_bitrate.c gcc -c -fPIC -I/usr/include/libavformat -I/usr/include/libavcodec -lavformat -lavcodec ./src/get_bitrate.c -o get_bitrate.o debug: ./src/get_bitrate.c gcc ./src/get_bitrate.c -Wall -I/usr/include/libavformat -I/usr/include/libavcodec -lavformat -lavcodec -o test clean: rm *.o rm *.so clean_test: rm test