diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2012-05-25 21:32:58 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-05-25 21:32:58 -0400 |
commit | b2aa91c1645c6041056da6fe10a992132bff7b15 (patch) | |
tree | 4fbdd8028ef2ee469a8f2be4aa98d9cd42139a80 /wcap | |
parent | bf171301446002d118196d957302ed447e984951 (diff) |
wcap: Commit Makefile.am
Diffstat (limited to 'wcap')
-rw-r--r-- | wcap/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/wcap/Makefile.am b/wcap/Makefile.am new file mode 100644 index 00000000..7dca7e94 --- /dev/null +++ b/wcap/Makefile.am @@ -0,0 +1,30 @@ +bin_PROGRAMS = wcap-decode wcap-snapshot + +wcap_decode_SOURCES = \ + args.c \ + args.h \ + EbmlIDs.h \ + EbmlWriter.c \ + EbmlWriter.h \ + mem_ops_aligned.h \ + mem_ops.h \ + tools_common.c \ + tools_common.h \ + vpxenc.c \ + vpx_timer.h \ + y4minput.c \ + y4minput.h \ + wcap-decode.c \ + wcap-decode.h + +wcap_decode_CPPFLAGS = -DCONFIG_VP8_ENCODER=1 +wcap_decode_CFLAGS = $(WCAP_CFLAGS) +wcap_decode_LDADD = $(WCAP_LIBS) + +wcap_snapshot_SOURCES = \ + wcap-snapshot.c \ + wcap-decode.c \ + wcap-decode.h + +wcap_snapshot_CFLAGS = $(WCAP_CFLAGS) +wcap_snapshot_LDADD = $(WCAP_LIBS) |