Skip to content

Commit b6b1ebc

Browse files
authored
Rewrite buildsystem to use Makefile.gappkg (#566)
* Rewrite buildsystem to use Makefile.gappkg This should remove the problems on OpenBSD, and speed up build times. * HACK
1 parent 98a2355 commit b6b1ebc

12 files changed

+385
-487
lines changed

.gitignore

+19-38
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
*.DS_Store
2-
*.Plo
3-
*.Tpo
1+
.ipynb_checkpoints
2+
*.a
43
*.aux
54
*.bbl
65
*.blg
76
*.brf
87
*.digraphs
8+
*.DS_Store
9+
*.dylib
910
*.g6
1011
*.gcda
1112
*.gcno
@@ -22,58 +23,38 @@
2223
*.o
2324
*.out
2425
*.pdf
26+
*.Plo
2527
*.pnr
2628
*.pyc
2729
*.six
2830
*.status
2931
*.sub
32+
*.swo
3033
*.swp
3134
*.synctex.gz
3235
*.tex
3336
*.toc
3437
*.top
38+
*.Tpo
3539
*.tui
3640
*.txt
37-
.dirstamp
38-
.libs/*
39-
Makefile
40-
Makefile.in
41+
/doc/*.css
42+
/doc/*.js
4143
aclocal.m4
4244
autom4te.*
43-
bin/*
44-
cnf/*
45+
bin/
46+
bliss
47+
compile
4548
configure
49+
coverage
50+
depcomp
4651
digraphs-config.h
4752
digraphs-lib
53+
gen/
4854
gh-pages/
49-
libtool
50-
ltmain.sh
51-
m4/*
52-
planarity
53-
src/.deps/*
54-
src/.libs/*
55-
src/_pkgconfig.h
56-
extern/edge-addition-planarity-suite-Version_*/.libs
57-
extern/edge-addition-planarity-suite-Version_*/c/.deps
58-
extern/edge-addition-planarity-suite-Version_*/m4
59-
src/stamp-h1
60-
tags
61-
tst/out/*
62-
data/digraphs-lib-0.5
63-
gh-pages/
55+
Makefile
6456
manual.lab
65-
ltmain.sh
66-
.libs/**/Info.plist
67-
digraphs-config.h
68-
compile
69-
depcomp
70-
install-sh
7157
missing
72-
*.swo
73-
coverage
74-
.ipynb_checkpoints
75-
bliss
76-
*.a
77-
*.dylib
78-
/doc/*.js
79-
/doc/*.css
58+
src/pkgconfig.h.in
59+
tags
60+
tst/out/

Makefile.am

-139
This file was deleted.

0 commit comments

Comments
 (0)