From 817a464f4a1441c7c01c134f54237e2a929f55c2 Mon Sep 17 00:00:00 2001 From: drmocm Date: Tue, 21 Jun 2022 15:19:04 +0200 Subject: [PATCH] same Makefile changes for test.ts --- apps/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index 9e6a504..d1cf395 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,4 +1,4 @@ -TARGETS = cit citin flashprog modt ddtest setmod ddflash setmod2 pls setmod3 modconfig ddinfo getiq modtest +TARGETS = cit citin flashprog modt ddtest setmod ddflash setmod2 pls setmod3 modconfig ddinfo getiq modtest test.ts all: $(TARGETS) @@ -10,7 +10,7 @@ modtest: modtest.c test.ts: ifndef FFMPEG - $(error "ffmpeg is not available please install to create test stream") + $(error "ffmpeg is not available please install to create test.ts") endif ffmpeg -f lavfi -i testsrc=duration=10:size=1280x720:rate=30 \ -f lavfi -i sine=f=440:b=4 -shortest -metadata \ @@ -42,7 +42,7 @@ modconfig: modconfig.c clean: - for f in $(TARGETS) *.o *~ test.ts; do \ + for f in $(TARGETS) *.o *~ ; do \ if [ -e "$$f" ]; then \ rm "$$f" || exit 1; \ fi \