From ada49a8aca89eeb23bee69bebea468681657333c Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Fri, 22 May 2020 00:37:35 -0400
Subject: initial commit: an AVL tree
---
Makefile | 8 ++++++++
1 file changed, 8 insertions(+)
create mode 100644 Makefile
(limited to 'Makefile')
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7327ab6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+.POSIX:
+OBJS = strbst.o
+CFLAGS = -Wall -pedantic
+tmplt: $(OBJS)
+ $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
+clean:
+ rm -f $(OBJS) inter
+strbst.o: strbst.c strbst.h
--
cgit