Skip to content

Avoid explicit TMD_OPP_* references #257

Avoid explicit TMD_OPP_* references

Avoid explicit TMD_OPP_* references #257

Workflow file for this run

name: Mac
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
name: Cocoa
runs-on: macos-latest
steps:
- name: Clone Project
uses: actions/checkout@v4
- name: Build
run: |
cd src
make -f Makefile.osx
autoconf:
runs-on: macos-latest
steps:
# Requires autoconf and automake; install those via homebrew (available
# by default).
- name: Install Build Dependencies
run: |
brew install m4
brew install autoconf
brew install automake
- name: Clone Project
uses: actions/checkout@v4
- name: Build
run: |
./autogen.sh
./configure --with-no-install NCURSES_CONFIG=`which ncurses5.4-config`
make