diff options
Diffstat (limited to 'starts/meaning-vm/makefile')
-rw-r--r-- | starts/meaning-vm/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/makefile b/starts/meaning-vm/makefile index 0a9738c..b2df672 100644 --- a/starts/meaning-vm/makefile +++ b/starts/meaning-vm/makefile @@ -3,12 +3,12 @@ CXXFLAGS=-pedantic -Wall -Werror -Wno-error=deprecated-declarations -Wno-gnu-zero-variadic-macro-arguments -std=gnu++17 -fno-operator-names -ggdb -O0 LINK.o=$(LINK.cc) -all: level0 level1 habit-starts/rhythm +all: level0 level1 habit-starts/rhythm level2 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 +level2: level2.o 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 liblevel2.a |