diff options
Diffstat (limited to 'starts/meaning-vm/makefile')
-rw-r--r-- | starts/meaning-vm/makefile | 10 |
1 files changed, 8 insertions, 2 deletions
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 |