diff options
author | scratko <m@scratko.xyz> | 2024-03-30 17:12:57 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-03-30 17:12:57 +0300 |
commit | ff69b8a8f2997c794ed4790dd84d2b3657f2f86e (patch) | |
tree | cf3dd97fac0a90e169708b64bfa6973f14ee4ed9 /Makefile | |
download | red-black-tree-ff69b8a8f2997c794ed4790dd84d2b3657f2f86e.tar.gz red-black-tree-ff69b8a8f2997c794ed4790dd84d2b3657f2f86e.tar.bz2 red-black-tree-ff69b8a8f2997c794ed4790dd84d2b3657f2f86e.zip |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e18ea6e --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +OBJMODULES = rb_tree.o +CC = gcc +CFLAGS = -g -Wall + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< -o $@ + +rb_tree: rb_tree_main.c $(OBJMODULES) + $(CC) $(CFLAGS) $^ -o $@ |