From 0e5d5b93ec0d845efe7efececa468974fb3e0cc2 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 26 Nov 2023 00:23:10 +0100 Subject: [PATCH] Makefile: Build stresstest for "make" and "make all" also --- .github/workflows/linux_and_macos.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux_and_macos.yml b/.github/workflows/linux_and_macos.yml index 4aca283..e8ad843 100644 --- a/.github/workflows/linux_and_macos.yml +++ b/.github/workflows/linux_and_macos.yml @@ -85,7 +85,7 @@ jobs: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} run: |- - CFLAGS='-std=gnu99 -pedantic -Werror' make all stresstest + CFLAGS='-std=gnu99 -pedantic -Werror' make - name: 'Install' run: |- diff --git a/Makefile b/Makefile index fb11b77..aea08f0 100755 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CFLAGS += `pkg-config --cflags ncursesw` LDLIBS += `pkg-config --libs ncursesw` stresstest: LDLIBS = -lm -all: ttyplot +all: ttyplot stresstest install: ttyplot ttyplot.1 install -d $(DESTDIR)$(PREFIX)/bin