diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-07-22 15:45:09 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-07-22 15:45:09 (EDT) |
commit | d1ef8fd76d2f07a26867458922919593fc6e78b4 (patch) | |
tree | e5230374d0d46cda1df860ea5860016627a29f75 | |
parent | 54154676cd12217735ba6ddab0a98dd1cfe9ace0 (diff) |
Makefile: Define OBJEXT
The "mostlyclean-compile" target runs `-rm -f *.$(OBJEXT)`, which of
course results in `rm -f *.` if OBJEXT is not set.
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index a3a227f..2207add 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,6 +25,7 @@ MANUAL = ProteanOS Archive Manager Manual TEXTDOMAIN = $$(printf '%s\n' '$(PACKAGE)' | sed -e 's|-|_|g') SUFFIXES = .sh .sho .ms .1in .1 +OBJEXT = sho # This PACKAGE_VERSION stuff is a rather gross hack, but it's the only reliable # way to put Git commit information in the prokit executable. Setting |