From 73c2b00a10c5786ddeeacc915e233fd4df1c9321 Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Sat, 11 Oct 2025 22:19:00 +0200 Subject: fix: evalexpr & tinyprintf contenaient toute la piscine --- rushs/tinyprintf/heap/Makefile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 rushs/tinyprintf/heap/Makefile (limited to 'rushs/tinyprintf/heap/Makefile') diff --git a/rushs/tinyprintf/heap/Makefile b/rushs/tinyprintf/heap/Makefile deleted file mode 100644 index 2ed972b..0000000 --- a/rushs/tinyprintf/heap/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC = gcc -CFLAGS = -Wall -Werror -Wvla -Wextra -std=c99 -pedantic -SRC = add.c del.c print.c pop.c create.c -OBJ = $(SRC:.c=.o) - -.PHONY: library clean - -library: $(OBJ) - ar csr libheap.a $(OBJ) - -$(OBJ): $(SRC) - -clean: - $(RM) libheap.a $(OBJ) -- cgit v1.2.3