same Makefile changes for test.ts

This commit is contained in:
drmocm 2022-06-21 15:19:04 +02:00
parent d627e6995f
commit 817a464f4a
1 changed files with 3 additions and 3 deletions

View File

@ -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 \