diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2025-07-02 23:41:29 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2025-07-02 23:41:29 -0300 |
commit | 4c15b4e3459311f8d458e0e9c031a473efe5f0b8 (patch) | |
tree | bad582b89b713a68b48eb7fc9a01c03adcdf7fe7 /example/Makefile.am | |
parent | 2ce4fb4a3cfb0d1cb92e9cbd71087fa16414631e (diff) | |
download | libtuberia-4c15b4e3459311f8d458e0e9c031a473efe5f0b8.tar.gz |
adding an example, without using libtuberia for now
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/example/Makefile.am b/example/Makefile.am new file mode 100644 index 0000000..f7bee12 --- /dev/null +++ b/example/Makefile.am @@ -0,0 +1,7 @@ +noinst_PROGRAMS = decode_filter_encode + +decode_filter_encode_CFLAGS = $(AM_CFLAGS) -I../src +decode_filter_encode_LDADD = ../src/libtuberia.a +decode_filter_encode_LDFLAGS = -lpthread -lavcodec -lavformat -lavutil -lswscale +decode_filter_encode_SOURCES = decode_filter_encode.c + |