From c9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:08:27 +0200 Subject: add: graphs et rushs --- rushs/evalexpr/dlist/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rushs/evalexpr/dlist/Makefile (limited to 'rushs/evalexpr/dlist/Makefile') diff --git a/rushs/evalexpr/dlist/Makefile b/rushs/evalexpr/dlist/Makefile new file mode 100644 index 0000000..1251967 --- /dev/null +++ b/rushs/evalexpr/dlist/Makefile @@ -0,0 +1,15 @@ +CC = gcc +CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla + +SRC = dlist-1.c dlist-2.c dlist-3.c dlist-4.c +OBJ = $(SRC:.c=.o) + +.PHONY: library clean + +library: $(OBJ) + ar csr libdlist.a $(OBJ) + +clean: $(OBJ) + $(RM) *.a $(OBJ) + +$(OBJ): $(SRC) -- cgit v1.2.3