prevent clean error in case test.ts does not exist

This commit is contained in:
internal 2023-05-11 14:03:01 +02:00
parent e9399971f8
commit 0d9b5ca619
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ cit: cit.c
$(CC) $(CFLAGS) -I../ddbridge -o $@ $<
clean:
rm test.ts
rm test.ts -f
for f in $(TARGETS) *.o *~ ; do \
if [ -e "$$f" ]; then \
rm "$$f" || exit 1; \