File: Makefile

package info (click to toggle)
search-ccsb 0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: sh: 54; perl: 40; lisp: 15; makefile: 15
file content (21 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SCRIPT=/usr/local/bin/
LISP=/usr/share/emacs21/site-lisp/


all: search-ccsb.elc

search-ccsb.elc: search-ccsb.el
	emacs -batch -q -f batch-byte-compile search-ccsb.el 


install: search-ccsb.elc
	sh ./install

clean:
	rm -f search-ccsb.elc *~

man:
	@pod2man --release="search-ccsb" --date="`date +"%B %e, %Y"`" --center="BibTeX search tool" search-ccsb > search-ccsb.1

.PHONY: install