Skip to content

Makefile: add install and uninstall targets #65

Makefile: add install and uninstall targets

Makefile: add install and uninstall targets #65

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
name: ${{ matrix.compiler.cc }} build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
- macos-13
- macos-15
compiler:
- { cc: gcc, cxx: g++ }
- { cc: clang, cxx: clang++ }
fail-fast: false
env:
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
steps:
- uses: actions/checkout@v2
- name: compiler version
run: ${{ matrix.compiler.cc }} --version
- name: make
run: make