diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 4f3177b..0c78891 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -181,7 +181,7 @@ jobs: run: | cd src mkdir -p obj - make -f makefile.unix -j$(nproc) + make -f makefile.unix trianglesd -j$(nproc) - name: Strip binary run: strip --strip-all src/trianglesd diff --git a/src/makefile.unix b/src/makefile.unix index 744b505..e01f387 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -199,14 +199,14 @@ ifdef USE_ZMQ OBJS += obj/zmqpublishnotifier.o endif +all: trianglesd + obj: @mkdir -p obj obj-test: @mkdir -p obj-test -all: trianglesd - test check: test_triangles FORCE ./test_triangles