From 0d9b5ca619204e3c06c6335216a4d4b01453e5ab Mon Sep 17 00:00:00 2001 From: internal <> Date: Thu, 11 May 2023 14:03:01 +0200 Subject: [PATCH] prevent clean error in case test.ts does not exist --- apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Makefile b/apps/Makefile index bc42fca..88222bb 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -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; \