Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch introduce a Makefile that is meant to replace the compile_all.sh script, and do more.
I import it as is from the Debian material, module refreshments.
By default, it does nothing (yet).
It contains the default targets: build, install, uninstall, clean, distclean.
It also contain the maintainer target maintainer-clean.
The other target are more specific to the project itself: jarbuild, jarclean.
The target default-info is meant to echo some key data.
Otherwise, the composition itself (TeX stuff) is highly inspire by the script: if I remember well, I added some option here and there for compatibility reasons.
Summary:
to build: make build
to clean: make clean
to build the jar: jarbuild
to clean the jar: jarclean
and so forth.
Note that it assume some data that I may bring later.
The optional MaKe data file maint.mk is meant to contained local setup, and so to be ignored by GIT.
Sample:
==8><--------------------------------------------------
include $(HOME)/etc/maint.mk
JARDIR = $(HOME)/Surfer/Galleries/pool/jar/
----------------------------------><8============
[[on my box, I play with make version 4 (Jessie and later); it is written with GNU make in mind]]