Makefile.unix: s/samplemuxer/sample_muxer/

this matches the target name used in CMakeLists.txt and the writing app
stored in the output file

Change-Id: I161675c6bff8ebfa041331a329589441d3874514
This commit is contained in:
James Zern
2015-03-18 15:31:46 -07:00
parent e3616a6614
commit b5229c7bc8

View File

@@ -12,14 +12,14 @@ OBJECTS4 := vttdemux.o webvttparser.o
INCLUDES := -I.
DEPS := $(WEBMOBJS:.o=.d) $(OBJECTS1:.o=.d) $(OBJECTS2:.o=.d)
DEPS += $(OBJECTS3:.o=.d) $(OBJECTS4:.o=.d)
EXES := samplemuxer sample dumpvtt vttdemux
EXES := sample_muxer sample dumpvtt vttdemux
all: $(EXES)
sample: sample.o $(LIBWEBMA)
$(CXX) $^ -o $@
samplemuxer: $(OBJECTS2) $(LIBWEBMA)
sample_muxer: $(OBJECTS2) $(LIBWEBMA)
$(CXX) $^ -o $@
dumpvtt: $(OBJECTS3)