From 5dbc8d72c23c55113e374fadaf07f7adbd9b7a2f Mon Sep 17 00:00:00 2001 From: jebba Date: Sat, 15 Jan 2022 12:05:58 -0700 Subject: [PATCH] just build cpp dsn2pcb, not other bits --- cpp-dsn2pcb/Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/cpp-dsn2pcb/Makefile b/cpp-dsn2pcb/Makefile index d331c38..bd6ca57 100644 --- a/cpp-dsn2pcb/Makefile +++ b/cpp-dsn2pcb/Makefile @@ -1,13 +1,7 @@ -all: c_pcb c_pcb_dsn c_pcb_view - -c_pcb: c_pcb.cpp mymath.cpp mymath.h router.cpp router.h layer.cpp layer.h io.h - c++ -O2 --std=c++14 c_pcb.cpp router.cpp layer.cpp mymath.cpp -oc_pcb +all: c_pcb_dsn c_pcb_dsn: c_pcb_dsn.cpp router.h mymath.h c++ -O2 --std=c++14 c_pcb_dsn.cpp -oc_pcb_dsn -c_pcb_view: c_pcb_view.cpp mymath.cpp mymath.h io.h - c++ -O2 --std=c++14 `pkg-config --cflags glfw3` c_pcb_view.cpp mymath.cpp -oc_pcb_view `pkg-config --static --libs glfw3` -D GL_SILENCE_DEPRECATION - clean: - rm c_pcb c_pcb_dsn c_pcb_view + rm c_pcb_dsn