diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-26 18:53:30 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-26 18:53:30 -0600 |
| commit | b1efa9cd26f037f8b7fa6e38ca1ccd9064093f39 (patch) | |
| tree | a2fb2a96496d9396f77777560008dfa889576aa3 /src/03/Makefile | |
| parent | 6b0b89527daa45ec94b96900bbe268d3828fcfad (diff) | |
feat: build a meldable heap
Diffstat (limited to 'src/03/Makefile')
| -rw-r--r-- | src/03/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/03/Makefile b/src/03/Makefile index dfaa109..c3aae26 100644 --- a/src/03/Makefile +++ b/src/03/Makefile @@ -5,8 +5,8 @@ CC=clang TEST_LIBS = -lcgreen BUILDDIR := build -OBJS := $(addprefix $(BUILDDIR)/,avl_tree.o rb_tree.o sort.o graph.o matrix.o) -TEST_OBJS := $(addprefix $(BUILDDIR)/,avl_tree_test.o rb_tree_test.o sort_test.o graph_test.o matrix_test.o) +OBJS := $(addprefix $(BUILDDIR)/,avl_tree.o rb_tree.o sort.o graph.o matrix.o meldable_heap.o) +TEST_OBJS := $(addprefix $(BUILDDIR)/,avl_tree_test.o rb_tree_test.o sort_test.o graph_test.o matrix_test.o meldable_heap_test.o) $(BUILDDIR)/%.o : %.c $(COMPILE.c) $(OUTPUT_OPTION) $< |
