Skip to content

Commit ca02a6b

Browse files
authored
修复第一次运行 make 时,文件不存在出错 (#225)
1 parent 0de3250 commit ca02a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ endif
3434
default: clean test
3535

3636
clean:
37-
-rm $(TARGET)
37+
-rm -f $(TARGET)
3838

3939
lib:
4040
$(CC) lib.c -o $(TARGET) $(CFLAGS) $(LDFLAGS)

0 commit comments

Comments
 (0)