diff options
author | Ralph Giles <giles@mozilla.com> | 2015-12-28 23:37:49 -0800 |
---|---|---|
committer | Ralph Giles <giles@mozilla.com> | 2016-01-04 10:18:20 -0800 |
commit | cf902dbb1a0561283b9cc8558f83074a647c00d8 (patch) | |
tree | 1d739900330ee6a70e86f1c5bf57c2ae581fe3fc /Makefile.unix | |
parent | 36d362287546323cabb42d745a4c9bd570c5d3b5 (diff) | |
download | opus-cf902dbb1a0561283b9cc8558f83074a647c00d8.tar.gz |
Add a check target to the static makefiles. r=ron
Diffstat (limited to 'Makefile.unix')
-rw-r--r-- | Makefile.unix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.unix b/Makefile.unix index 04f10194..b13230e8 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -106,11 +106,16 @@ TESTOPUSPADDING_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUSPADDING_SRCS_C)) OPUSCOMPARE_SRCS_C = src/opus_compare.c OPUSCOMPARE_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(OPUSCOMPARE_SRCS_C)) +TESTS := test_opus_api test_opus_decode test_opus_encode test_opus_padding + # Rules -all: lib opus_demo opus_compare test_opus_api test_opus_decode test_opus_encode test_opus_padding +all: lib opus_demo opus_compare $(TESTS) lib: $(TARGET) +check: all + for test in $(TESTS); do ./$$test; done + $(TARGET): $(OBJS) $(ARCHIVE.cmdline) @@ -151,4 +156,4 @@ clean: $(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \ $(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) $(TESTOPUSPADDING_OBJS) -.PHONY: all lib clean force +.PHONY: all lib clean force check |