Skip to content

Commit

Permalink
smax-clib: distro target to build tools also
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Dec 27, 2024
1 parent 753b506 commit 10a8201
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export

# Build for distribution
.PHONY: distro
distro: shared $(DOC_TARGETS)
distro: shared tools $(DOC_TARGETS)

# Build everything...
.PHONY: all
Expand Down Expand Up @@ -133,6 +133,7 @@ pdf:
# See https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
prefix ?= /usr
exec_prefix ?= $(prefix)
bindir ?= $(exec_prefix)/bin
libdir ?= $(exec_prefix)/lib
includedir ?= $(prefix)/include
datarootdir ?= $(prefix)/share
Expand Down

0 comments on commit 10a8201

Please sign in to comment.