diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-09 03:26:04 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-09 03:26:04 -0800 |
commit | 8ceeb5f83f22ed3db06fc02bb23710ccc1dbbb90 (patch) | |
tree | 8defe85cd6af09cbe258ace239eb490a0b98651c /starts/meaning-vm/makefile | |
parent | 584ca7f9b6fca6da54608d3b28274273b2c9a4b8 (diff) | |
download | standingwithresilience-8ceeb5f83f22ed3db06fc02bb23710ccc1dbbb90.tar.gz standingwithresilience-8ceeb5f83f22ed3db06fc02bb23710ccc1dbbb90.zip |
use tls contexts for habits
Diffstat (limited to 'starts/meaning-vm/makefile')
-rw-r--r-- | starts/meaning-vm/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/starts/meaning-vm/makefile b/starts/meaning-vm/makefile index dba9eac..fbb8a57 100644 --- a/starts/meaning-vm/makefile +++ b/starts/meaning-vm/makefile @@ -6,8 +6,10 @@ level0: level0.o liblevel0.a liblevel0.a: $(patsubst %.cpp,%.o,$(wildcard level-0/*.cpp)) level1: level1.o liblevel1.a liblevel1.a: $(patsubst %.cpp,%.o,$(wildcard level-0/*.cpp)) $(patsubst %.cpp,%.o,$(wildcard level-1/*.cpp)) +level2: liblevel2.a +liblevel2.a: $(patsubst %.cpp,%.o,$(wildcard level-0/*.cpp)) $(patsubst %.cpp,%.o,$(wildcard level-1/*.cpp)) $(patsubst %.cpp,%.o,$(wildcard level-2/*.cpp)) -habit-starts/rhythm: habit-starts/rhythm.o liblevel1.a +habit-starts/rhythm: habit-starts/rhythm.o liblevel2.a liblevel%.a: level-%/*.hpp %.a: |