2007-05-29 16:53:15 -04:00
|
|
|
# enforce that all scripts have a --help and --version option
|
|
|
|
AUTOMAKE_OPTIONS = std-options
|
2007-02-21 23:36:02 -05:00
|
|
|
|
2011-06-23 22:21:51 -04:00
|
|
|
SUBDIRS = po
|
|
|
|
|
2007-02-21 23:36:02 -05:00
|
|
|
bin_SCRIPTS = \
|
2008-06-14 12:29:29 -04:00
|
|
|
$(OURSCRIPTS) \
|
2011-06-24 15:19:36 -04:00
|
|
|
repo-remove \
|
|
|
|
repo-elephant
|
2008-06-14 12:29:29 -04:00
|
|
|
|
|
|
|
OURSCRIPTS = \
|
2007-02-21 23:36:02 -05:00
|
|
|
makepkg \
|
2010-12-08 07:16:37 -05:00
|
|
|
pacman-db-upgrade \
|
2010-09-15 23:40:35 -04:00
|
|
|
pacman-key \
|
2007-02-21 23:36:02 -05:00
|
|
|
pacman-optimize \
|
2009-02-25 13:26:31 -05:00
|
|
|
pkgdelta \
|
2007-02-21 23:36:02 -05:00
|
|
|
rankmirrors \
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-add
|
2007-02-21 23:36:02 -05:00
|
|
|
|
2007-05-30 11:04:49 -04:00
|
|
|
EXTRA_DIST = \
|
2007-07-06 18:43:24 -04:00
|
|
|
makepkg.sh.in \
|
2010-12-08 07:16:37 -05:00
|
|
|
pacman-db-upgrade.sh.in \
|
2010-09-15 23:40:35 -04:00
|
|
|
pacman-key.sh.in \
|
2007-07-06 18:43:24 -04:00
|
|
|
pacman-optimize.sh.in \
|
2009-02-25 13:26:31 -05:00
|
|
|
pkgdelta.sh.in \
|
2009-08-09 14:27:40 -04:00
|
|
|
rankmirrors.sh.in \
|
2011-06-08 09:36:46 -04:00
|
|
|
repo-add.sh.in \
|
|
|
|
$(LIBRARY)
|
|
|
|
|
|
|
|
LIBRARY = \
|
2011-06-09 06:43:25 -04:00
|
|
|
library/output_format.sh \
|
2011-06-08 09:36:46 -04:00
|
|
|
library/parse_options.sh
|
2007-05-30 11:04:49 -04:00
|
|
|
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
2011-06-14 23:52:56 -04:00
|
|
|
MOSTLYCLEANFILES = $(bin_SCRIPTS)
|
2007-05-30 11:04:49 -04:00
|
|
|
|
2008-05-31 12:53:51 -04:00
|
|
|
if USE_GIT_VERSION
|
2011-01-22 09:15:16 -05:00
|
|
|
GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 --dirty | sed s/^v//')
|
2008-05-31 12:53:51 -04:00
|
|
|
REAL_PACKAGE_VERSION = $(GIT_VERSION)
|
|
|
|
else
|
|
|
|
REAL_PACKAGE_VERSION = $(PACKAGE_VERSION)
|
|
|
|
endif
|
|
|
|
|
2007-05-30 11:04:49 -04:00
|
|
|
#### Taken from the autoconf scripts Makefile.am ####
|
|
|
|
edit = sed \
|
|
|
|
-e 's|@localedir[@]|$(localedir)|g' \
|
|
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
2007-06-04 17:35:31 -04:00
|
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
2007-05-30 11:04:49 -04:00
|
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
2010-10-13 18:50:54 -04:00
|
|
|
-e 's|@BASH_SHELL[@]|$(BASH_SHELL)|g' \
|
2008-05-31 12:53:51 -04:00
|
|
|
-e 's|@PACKAGE_VERSION[@]|$(REAL_PACKAGE_VERSION)|g' \
|
2007-06-04 17:28:23 -04:00
|
|
|
-e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \
|
2007-06-04 17:49:09 -04:00
|
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
|
2008-12-27 01:35:06 -05:00
|
|
|
-e 's|@BUILDSCRIPT[@]|$(BUILDSCRIPT)|g' \
|
2008-08-20 00:29:56 -04:00
|
|
|
-e 's|@SIZECMD[@]|$(SIZECMD)|g' \
|
2009-04-26 06:58:04 -04:00
|
|
|
-e 's|@SEDINPLACE[@]|$(SEDINPLACE)|g' \
|
2010-06-29 23:29:26 -04:00
|
|
|
-e 's|@DUPATH[@]|$(DUPATH)|g' \
|
2011-06-08 09:36:46 -04:00
|
|
|
-e 's|@SCRIPTNAME[@]|$@|g' \
|
2011-06-08 03:36:03 -04:00
|
|
|
-e 's|@configure_input[@]|Generated from $@.sh.in; do not edit by hand.|g'
|
2007-05-30 11:04:49 -04:00
|
|
|
|
|
|
|
## All the scripts depend on Makefile so that they are rebuilt when the
|
|
|
|
## prefix etc. changes. Use chmod -w to prevent people from editing the
|
|
|
|
## wrong file by accident.
|
2007-07-06 18:43:24 -04:00
|
|
|
# two 'test' lines- make sure we can handle both sh and py type scripts
|
|
|
|
# third 'test' line- make sure one of the two checks succeeded
|
2008-06-14 12:29:29 -04:00
|
|
|
$(OURSCRIPTS): Makefile
|
2008-08-23 19:27:01 -04:00
|
|
|
@echo ' ' GEN $@;
|
2011-06-14 23:52:56 -04:00
|
|
|
@rm -f $@
|
|
|
|
@test -f $(srcdir)/$@.sh.in && m4 -P -I $(srcdir) $(srcdir)/$@.sh.in | $(edit) >$@
|
|
|
|
@chmod +x $@
|
|
|
|
@chmod a-w $@
|
2007-05-30 11:04:49 -04:00
|
|
|
|
2011-06-09 06:43:25 -04:00
|
|
|
makepkg: \
|
|
|
|
$(srcdir)/makepkg.sh.in \
|
|
|
|
$(srcdir)/library/parse_options.sh
|
|
|
|
|
|
|
|
pacman-db-upgrade: \
|
|
|
|
$(srcdir)/pacman-db-upgrade.sh.in \
|
|
|
|
$(srcdir)/library/output_format.sh
|
|
|
|
|
|
|
|
pacman-key: \
|
|
|
|
$(srcdir)/pacman-key.sh.in \
|
|
|
|
$(srcdir)/library/output_format.sh
|
|
|
|
|
2007-07-06 18:43:24 -04:00
|
|
|
pacman-optimize: $(srcdir)/pacman-optimize.sh.in
|
2011-06-09 06:43:25 -04:00
|
|
|
|
|
|
|
pkgdelta: \
|
|
|
|
$(srcdir)/pkgdelta.sh.in \
|
|
|
|
$(srcdir)/library/output_format.sh
|
|
|
|
|
2009-08-09 14:27:40 -04:00
|
|
|
rankmirrors: $(srcdir)/rankmirrors.sh.in
|
2011-06-09 06:43:25 -04:00
|
|
|
|
|
|
|
repo-add: \
|
|
|
|
$(srcdir)/repo-add.sh.in \
|
|
|
|
$(srcdir)/library/output_format.sh
|
|
|
|
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-remove: $(srcdir)/repo-add.sh.in
|
2009-01-02 23:23:59 -05:00
|
|
|
rm -f repo-remove
|
|
|
|
$(LN_S) repo-add repo-remove
|
2007-06-04 17:49:09 -04:00
|
|
|
|
2011-06-24 15:19:36 -04:00
|
|
|
repo-elephant: $(srcdir)/repo-add.sh.in
|
|
|
|
rm -f repo-elephant
|
|
|
|
$(LN_S) repo-add repo-elephant
|
|
|
|
|
2007-06-04 17:49:09 -04:00
|
|
|
# vim:set ts=2 sw=2 noet:
|