fnet.c

Simple C networking library
git clone git://git.finwo.net/lib/fnet.c
Log | Files | Refs | README

commit f1bf2c971335f8b4c1784b9228719ff0ad527827
parent b4d7e9ad22203a5a49cae9cb97835d24cff585bd
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Thu, 27 Jul 2023 22:35:48 +0200

Added make clean command

Diffstat:
MMakefile | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -25,3 +25,7 @@ $(OBJ): $(SRC) $(BIN): $(OBJ) $(CC) $(LDFLAGS) $(OBJ) -o $@ + +.PHONY: clean +clean: + rm -f $(OBJ)