advent-of-code

Perserverance, or the lack thereof

git clone git://git.shimmy1996.com/advent-of-code.git
commit 98ac6de253757ae00925bd20541caf2c0197282a
parent 2b264a46cf3d0f6d1da8424a4ceb8f64602b2134
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu,  5 Dec 2019 09:58:38 -0500

Remove C++ target

Diffstat:
Mday-03/Makefile | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/day-03/Makefile b/day-03/Makefile
@@ -1,13 +1,9 @@
 CC := g++
 CCFLAGS := --std=c++17 -Wall
 
-all: day-03-cpp day-03-rust day-03.jl
+all: day-03-rust day-03.jl
 	julia day-03.jl
-	./day-03-cpp
 	./day-03-rust
 
-day-03-cpp: day-03.cc
-	$(CC) $(CCFLAGS) $^ -o $@
-
 day-03-rust: day-03.rs
 	rustc $^ -o $@