Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
time: "04:00"
open-pull-requests-limit: 10
22 changes: 22 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Linux Build

on:
push:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
- name: configure
run: ./Config-all ; cd bin-release/ ; make ; strip -s src/smart ; mkdir ../website ; cp src/smart ../website ; cd ..
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: linux # The branch the action should deploy to.
folder: website/ # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch
single-commit: true
4 changes: 1 addition & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ AC_PROG_CXX
AX_CXX_COMPILE_STDCXX(11)
AM_PROG_LEX
AC_PROG_YACC
# Use AM_PROG_AR if we can...
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AM_PROG_LIBTOOL
LT_INIT([disable-shared])

#
# Check for GMP
Expand Down
7 changes: 5 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ BUILT_SOURCES = \
ParseICP/icplex.cc ParseICP/icpyacc.hh ParseICP/icpyacc.cc

AM_YFLAGS = -d
AM_CXXFLAGS = -Wall
AM_CXXFLAGS = ${CXXFLAGS} -Wall -Wno-sign-compare

smart_LDFLAGS=${LDFLAGS} -all-static
smart_CXXFLAGS =${CXXFLAGS} -Wall -g -Wno-sign-compare

## ============================================================
##
Expand Down Expand Up @@ -165,7 +168,7 @@ smart_SOURCES = \
Apps/smart.cc


smart_LDADD = _Meddly/src/libmeddly.la
smart_LDADD = _Meddly/src/.libs/libmeddly.a


## ============================================================
Expand Down
2 changes: 1 addition & 1 deletion src/_GraphLib/graphlib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// External libraries

#include "intset.h"
#include "../_IntSets/intset.h"

const int MAJOR_VERSION = 3;
const int MINOR_VERSION = 0;
Expand Down