Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 1a18131

Browse files
committed
Refactor 're' target in Makefile for clarity and consistency
1 parent 9efcf53 commit 1a18131

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ clean:
2828
fclean: clean
2929
rm -rf $(LIBRARY)
3030

31-
re: fclean all
31+
re:
32+
$(MAKE) fclean
33+
$(MAKE) all
3234

3335
log:
3436
find inc -type f -print -exec echo "====> {} <====" \; -exec cat {} \; || true

0 commit comments

Comments
 (0)