mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
622e7fdd4f
This has been rewitten in C which is much much faster. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com>
42 lines
734 B
Makefile
42 lines
734 B
Makefile
OURFILES = \
|
|
bacman \
|
|
bash_completion \
|
|
pacdiff \
|
|
paclist \
|
|
pacscripts \
|
|
pacsearch \
|
|
wget-xdelta.sh \
|
|
zsh_completion
|
|
|
|
EXTRA_DIST = \
|
|
PKGBUILD.vim \
|
|
bacman.in \
|
|
bash_completion.in \
|
|
pacdiff.in \
|
|
paclist.in \
|
|
pacscripts.in \
|
|
pacsearch.in \
|
|
vimprojects \
|
|
wget-xdelta.sh.in \
|
|
zsh_completion.in \
|
|
README
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
|
MOSTLYCLEANFILES = $(OURFILES) *.tmp
|
|
|
|
edit = sed \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
-e 's|@BASH_SHELL[@]|$(BASH_SHELL)|g'
|
|
|
|
$(OURFILES): Makefile
|
|
@echo ' ' GEN $@;
|
|
@rm -f $@ $@.tmp
|
|
@cp -a $@.in $@.tmp
|
|
@$(edit) $@.in >$@.tmp
|
|
@mv $@.tmp $@
|
|
|
|
all-am: $(OURFILES)
|
|
|
|
# vim:set ts=2 sw=2 noet:
|