summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/makefile
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-24 19:23:37 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-24 19:23:37 -0800
commitcd03e291664cb102bde61d86a15f0add11809766 (patch)
tree9afb4bc872236b95debd5e20daf00797c563c666 /starts/meaning-vm/makefile
parentdbbed1e4e1d4b3f268c71236c89f1d673fa0c165 (diff)
downloadstandingwithresilience-cd03e291664cb102bde61d86a15f0add11809766.tar.gz
standingwithresilience-cd03e291664cb102bde61d86a15f0add11809766.zip
messy but works. rushing to get this done with may have been a poor investment.
Diffstat (limited to 'starts/meaning-vm/makefile')
-rw-r--r--starts/meaning-vm/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/starts/meaning-vm/makefile b/starts/meaning-vm/makefile
index 748cca2..d08f0b1 100644
--- a/starts/meaning-vm/makefile
+++ b/starts/meaning-vm/makefile
@@ -1,8 +1,11 @@
CXXFLAGS=-Wall -Werror -std=c++17 -fno-operator-names -ggdb -O0
LINK.o=$(LINK.cc)
+all: level0 level1
level0: level0.o liblevel0.a
liblevel0.a: level-0/memorystore.o level-0/concept.o level-0/ref.o
+level1: level1.o liblevel0.a liblevel1.a
+liblevel1.a: level-1/ref.o level-1/sugar.o level-1/concepts.o
%.a:
ar ru $@ $^
ranlib $@
@@ -10,4 +13,4 @@ liblevel0.a: level-0/memorystore.o level-0/concept.o level-0/ref.o
main: main.o concept.o helpers.o memorystore.o meaning.o
*.o: *.hpp */*.hpp
clean:
- -rm *.o main level0 *.a */*.o
+ -rm *.o main level0 level1 level2 *.a */*.o