summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e1eb457
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+transcode: transcode.c
+ $(CC) -Wall -Wextra -g -O2 $(shell pkg-config --cflags libavcodec libavformat libavutil libswresample) -o $@ $< $(shell pkg-config --libs libavcodec libavformat libavutil libswresample)
+
+html: ffmpeg-libs-audio-transcode.md
+ pandoc $< --metadata pagetitle=ffmpeg-libs-audio-transcode -s --highlight-style tango -o ffmpeg-libs-audio-transcode.html
+
+clean:
+ rm -f transcode ffmpeg-libs-audio-transcode.html