diff options
author | Nao Pross <naopross@thearcway.org> | 2018-12-10 13:51:07 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-12-10 13:51:07 +0100 |
commit | dbc65422bc4da51852764d6130d6bd8983aef7d8 (patch) | |
tree | ee98b364eaa3fa8f91e1bcbd25c7682e3c52cf6d /vector/makefile | |
parent | Update vector ex. makefile and add vec3_mag function (diff) | |
download | cplusplus-dbc65422bc4da51852764d6130d6bd8983aef7d8.tar.gz cplusplus-dbc65422bc4da51852764d6130d6bd8983aef7d8.zip |
Add C++ templated vector example
Diffstat (limited to 'vector/makefile')
-rw-r--r-- | vector/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vector/makefile b/vector/makefile index ad56656..d504a71 100644 --- a/vector/makefile +++ b/vector/makefile @@ -1,8 +1,8 @@ CARGS := -Wall -Werror -I. LDARGS := -lm -CPPARGS := -Wall -Werror -I. +CPPARGS := -Wall -I. -all: vector.pdf c_build/vector +all: vector.pdf c_build/vector cpp_build/vector %.pdf: %.md pandoc \ |