kopia lustrzana https://gitlab.com/sane-project/backends
New target 'sort-cvsignore' to keep all .cvsignore files sorted.
rodzic
30c81f9d64
commit
4b9990ac22
10
Makefile.in
10
Makefile.in
|
@ -54,6 +54,16 @@ install: install-recursive
|
|||
$(INSTALL_DATA) $${file} $(includedir)/sane || exit 1; \
|
||||
done
|
||||
|
||||
#
|
||||
# Keep the .cvsignore files sorted, and use this target to do it.
|
||||
#
|
||||
PERL=perl
|
||||
sort-cvsignore:
|
||||
for f in `find . -name .cvsignore`; do \
|
||||
$(PERL) -e 'print sort <>;' < $$f > $$f.tmptmp; \
|
||||
mv $$f.tmptmp $$f; \
|
||||
done
|
||||
|
||||
clean: clean-recursive
|
||||
|
||||
distclean: clean distclean-recursive
|
||||
|
|
Ładowanie…
Reference in New Issue