Autocomplete stuff
This commit is contained in:
parent
dc3319c32e
commit
591d1db458
36 changed files with 15782 additions and 0 deletions
27
.emacs.d/elpa/auto-complete-1.4/Makefile
Normal file
27
.emacs.d/elpa/auto-complete-1.4/Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
VERSION=`perl -ne 'print $$1 if /;; Version: (.*)/' auto-complete.el`
|
||||
PACKAGE=auto-complete-${VERSION}
|
||||
|
||||
byte-compile:
|
||||
emacs -Q -L . -batch -f batch-byte-compile auto-complete.el auto-complete-config.el
|
||||
|
||||
install:
|
||||
emacs -Q -L . -batch -l etc/install ${DIR}
|
||||
|
||||
clean:
|
||||
rm -f *.elc
|
||||
rm -f doc/*.html
|
||||
rm -rf ${PACKAGE}
|
||||
rm -f ${PACKAGE}.zip ${PACKAGE}.tar ${PACKAGE}.tar.bz2
|
||||
|
||||
package: clean
|
||||
mkdir ${PACKAGE}
|
||||
cp -r *.el Makefile *.md COPYING.* doc dict ${PACKAGE}
|
||||
|
||||
package.tar: package
|
||||
tar cf ${PACKAGE}.tar ${PACKAGE}
|
||||
|
||||
package.tar.bz2: tar
|
||||
bzip2 ${PACKAGE}.tar
|
||||
|
||||
package.zip: package
|
||||
zip -r ${PACKAGE}.zip ${PACKAGE}
|
||||
Loading…
Add table
Add a link
Reference in a new issue