From f930f5ce80b277c5e5d0c158e96639d043e5e2fe Mon Sep 17 00:00:00 2001 From: Attila Kovacs Date: Fri, 27 Dec 2024 14:06:16 +0100 Subject: [PATCH] smax-clib: distro target to build tools also --- .github/workflows/install.yml | 3 +++ Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index e484e1b..ba9e26d 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -31,6 +31,9 @@ jobs: - name: install doxygen run: sudo apt-get install doxygen + - name: install popt + run: sudo apt-get install libpopt-dev + - name: Check out smax-clib uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 13a6204..cb13b34 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ export # Build for distribution .PHONY: distro -distro: shared $(DOC_TARGETS) +distro: shared tools $(DOC_TARGETS) # Build everything... .PHONY: all