diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-21 13:37:18 -0500 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-21 13:37:18 -0500 |
commit | 6e81ffa9f5baabe8d4b16fa927ce423fbe26771e (patch) | |
tree | 3abbf34ccf1cb05d26f4a83a8dcf3455aebe1c90 /starts/meaning-vm/makefile | |
parent | 302fc80f638783d17cd3b496284a535044241297 (diff) | |
download | standingwithresilience-6e81ffa9f5baabe8d4b16fa927ce423fbe26771e.tar.gz standingwithresilience-6e81ffa9f5baabe8d4b16fa927ce423fbe26771e.zip |
direct cast concept from string
Diffstat (limited to 'starts/meaning-vm/makefile')
-rw-r--r-- | starts/meaning-vm/makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/starts/meaning-vm/makefile b/starts/meaning-vm/makefile index eb47570..9796f88 100644 --- a/starts/meaning-vm/makefile +++ b/starts/meaning-vm/makefile @@ -1,4 +1,7 @@ -CXXFLAGS=-std=c++11 -ggdb +CXXFLAGS=-std=c++14 -ggdb +LINK.o=$(LINK.cc) -main: main.cpp -aain.cpp: *.hpp +main: main.o concept.o helpers.o +%.o: *.hpp +clean: + -rm *.o main |