From 9a14918abec434d8463e07635daef380ad630649 Mon Sep 17 00:00:00 2001 From: olpc user Date: Sun, 24 Nov 2019 13:22:55 -0800 Subject: breaking into levels --- starts/meaning-vm/makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'starts/meaning-vm/makefile') diff --git a/starts/meaning-vm/makefile b/starts/meaning-vm/makefile index 7c39de3..748cca2 100644 --- a/starts/meaning-vm/makefile +++ b/starts/meaning-vm/makefile @@ -1,7 +1,13 @@ CXXFLAGS=-Wall -Werror -std=c++17 -fno-operator-names -ggdb -O0 LINK.o=$(LINK.cc) +level0: level0.o liblevel0.a +liblevel0.a: level-0/memorystore.o level-0/concept.o level-0/ref.o +%.a: + ar ru $@ $^ + ranlib $@ + main: main.o concept.o helpers.o memorystore.o meaning.o -*.o: *.hpp +*.o: *.hpp */*.hpp clean: - -rm *.o main + -rm *.o main level0 *.a */*.o -- cgit v1.2.3