summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/heap/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/tinyprintf/heap/Makefile')
-rw-r--r--rushs/tinyprintf/heap/Makefile14
1 files changed, 0 insertions, 14 deletions
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)