summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/makefile
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2019-12-06 08:25:51 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2019-12-06 08:25:51 -0800
commit7b3382e6e10a34098eb3f3d97473eab47ac3ac94 (patch)
treed49fd662e499e6e2c123d52be10beda9b5f1d56d /starts/meaning-vm/makefile
parent1c69cfe93e07f1f7d6d8de6908a0a4caa1dce9bd (diff)
downloadstandingwithresilience-7b3382e6e10a34098eb3f3d97473eab47ac3ac94.tar.gz
standingwithresilience-7b3382e6e10a34098eb3f3d97473eab47ac3ac94.zip
some code around a timing concept
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 920987a..e2e175d 100644
--- a/starts/meaning-vm/makefile
+++ b/starts/meaning-vm/makefile
@@ -1,11 +1,14 @@
CXXFLAGS=-Wall -Werror -std=c++17 -fno-operator-names -ggdb -O0
LINK.o=$(LINK.cc)
-all: level0 level1
+all: level0 level1 habit-starts/rhythm
level0: level0.o liblevel0.a
liblevel0.a: level-0/memorystore.o level-0/concept.o level-0/ref.o
level1: level1.o liblevel1.a liblevel0.a
liblevel1.a: level-1/ref.o level-1/sugar.o level-1/concepts.o level-1/funcs.o
+
+habit-starts/rhythm: habit-starts/rhythm.o liblevel1.a liblevel0.a
+
liblevel%.a: level-%/*.hpp
%.a:
ar ru $@ $^