summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * .gitignore: Update build system and object file exclusionsP. J. McDermott2017-07-221-7/+25
| |
| * Makefile.am: Build locale_MESSAGES with noinst_DATAP. J. McDermott2017-07-221-2/+1
| | | | | | | | | | | | | | Instead of the "all-local" target. Installation and uninstallation are handled in the "install-data-local" and "uninstall-local" targets respectively.
| * locale/en_US: Update paths in commentsP. J. McDermott2017-07-221-14/+14
| |
| * Makefile.am: Set GIT_DIR in dist-hookP. J. McDermott2017-07-221-1/+2
| |
| * Makefile: Define OBJEXTP. J. McDermott2017-07-221-0/+1
| | | | | | | | | | The "mostlyclean-compile" target runs `-rm -f *.$(OBJEXT)`, which of course results in `rm -f *.` if OBJEXT is not set.
| * is_cmd(): Use case instead of [, printf, and grepP. J. McDermott2017-07-221-2/+3
| |
| * is_cmd(): Update printf callP. J. McDermott2017-07-221-1/+1
| |
| * cmd/*: Use register_cmd()P. J. McDermott2017-07-227-0/+42
| |
| * register_cmd(): New functionP. J. McDermott2017-07-221-0/+9
| |
| * print_cmd_summaries(): Use cmds instead of PKGLIBCMDP. J. McDermott2017-07-221-3/+1
| |
| * main(): Drop load_cmds() callP. J. McDermott2017-07-221-1/+0
| |
| * src/main.sh: Drop PKGLIBCMDP. J. McDermott2017-07-221-1/+0
| |
| * load_cmds(): RemoveP. J. McDermott2017-07-221-12/+0
| |
| * Makefile.am: Rearrange CLEANFILESP. J. McDermott2017-07-221-2/+2
| |
| * Makefile.am: Move do_substP. J. McDermott2017-07-221-5/+4
| |
| * Makefile.am: Use PACKAGE_VERSION_GIT in do_substP. J. McDermott2017-07-221-1/+1
| |
| * Makefile.am: Clean up do_substP. J. McDermott2017-07-221-10/+1
| |
| * pro-archman(1): Use new substitution macrosP. J. McDermott2017-07-221-1/+1
| |
| * Makefile.am: Add MANUAL to do_substP. J. McDermott2017-07-221-0/+1
| |
| * src/main.sh: Drop PKGLIBDIR and PKGLIBCMDDIRP. J. McDermott2017-07-221-2/+0
| |
| * use(): RemoveP. J. McDermott2017-07-221-38/+0
| |
| * src/*.sh: Drop inclusion guardsP. J. McDermott2017-07-2211-33/+0
| |
| * src/*.sh, src/cmd/*.sh: Drop use() callsP. J. McDermott2017-07-2214-48/+0
| |
| * src/locale.sh: Drop TEXT_DOMAIN assignmentP. J. McDermott2017-07-221-1/+0
| |
| * src/locale.sh: Use TEXTDOMAINP. J. McDermott2017-07-221-2/+2
| |
| * src/locale.sh: Drop LOCALEDIR assignmentP. J. McDermott2017-07-221-1/+0
| |
| * Makefile.am: Fix pro_archman_SHPPFLAGS usageP. J. McDermott2017-07-221-1/+1
| |
| * src/main.sh: Drop "#!" line and main() callP. J. McDermott2017-07-221-4/+0
| |
| * src/pro-archman.sh: Rename to src/main.shP. J. McDermott2017-07-222-1/+1
| |
| * Makefile.am: Preprocess scripts with shppP. J. McDermott2017-07-221-1/+5
| |
| * Makefile.am: Drop .sh inference ruleP. J. McDermott2017-07-221-5/+0
| |
| * Makefile.am: Clean up and rearrange EXTRA_DISTP. J. McDermott2017-07-221-4/+1
| |
| * Makefile.am: Drop pkgdatadir and pkgdatacmddirP. J. McDermott2017-07-221-14/+0
| | | | | | | | With that, uninstall-hook is no longer needed.
| * Makefile.am: Rearrange locale_MESSAGES and man1_MANSP. J. McDermott2017-07-221-1/+3
| |
| * Makefile.am: Drop _SCRIPTSP. J. McDermott2017-07-221-7/+0
| |
| * Makefile.am: Clean $(pro_archman_LDADD)P. J. McDermott2017-07-221-0/+1
| |
| * Makefile.am: Set and use TEXTDOMAIN instead of textdomainP. J. McDermott2017-07-221-3/+5
| | | | | | | | Also set MANUAL.
| * Makefile.am: Move and rearrange SUFFIXESP. J. McDermott2017-07-221-2/+2
| |
| * Makefile.am: Link in all built pro_archman_SOURCES objectsP. J. McDermott2017-07-221-1/+1
| |
| * src/local.mk, src/cmd/local.mk: pro_archman_SOURCESP. J. McDermott2017-07-222-5/+3
| |
| * Makefile.am: Rearrange inference rulesP. J. McDermott2017-07-221-4/+4
| |
| * Makefile.am: Rearrange inclusionsP. J. McDermott2017-07-221-1/+1
| |
| * Makefile.am: Drop lib/local.mk inclusionP. J. McDermott2017-07-221-1/+0
| |
| * `git ls-files | xargs sed -i 's/\.sm/.sho/g'`P. J. McDermott2017-07-224-10/+10
| |
| * src/local.mk: Merge in lib/local.mkP. J. McDermott2017-07-222-14/+15
| |
| * `git mv lib/cmd/ src/`P. J. McDermott2017-07-228-0/+0
| |
| * `git mv lib/*.sh src/`P. J. McDermott2017-07-2211-0/+0
| |
| * Makefile.am: Drop lib/cmd/local.mk inclusionP. J. McDermott2017-07-221-1/+0
| |
| * lib/local.mk: Include lib/cmd/local.mkP. J. McDermott2017-07-221-0/+2
| |
| * /local.mk, */*/local.mk: Drop header commentsP. J. McDermott2017-07-226-18/+0
| |