Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add a folder "programs" for executables solving a single problem #270

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

ACLOCAL_AMFLAGS = -I macros

SUBDIRS=linbox benchmarks tests interfaces doc examples
SUBDIRS=linbox benchmarks tests interfaces doc examples programs

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = linbox.pc
Expand Down Expand Up @@ -56,6 +56,9 @@ examples:
benchmarks:
(cd benchmarks; ${MAKE} benchmarks)

programs:
(cd programs; ${MAKE} programs)

perfpublisher: benchmarks/perfpublisher tests/perfpublisher

benchmarks/perfpublisher:
Expand Down
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ interfaces/kaapi/Makefile
benchmarks/Makefile
benchmarks/data/Makefile
benchmarks/matrix/Makefile
programs/Makefile
programs/smith/Makefile
linbox.pc
])

Expand Down
4 changes: 4 additions & 0 deletions programs/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SUBDIRS=smith

programs:
(cd smith; ${MAKE} programs)
1 change: 1 addition & 0 deletions programs/smith/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
programs: