aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
blob: 79a833c1cefbf9cc0578dca3b17ac13f21997661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FILES := $(wildcard *.el)

PACKAGE_TARGETS := $(addprefix package-,$(FILES))

package: $(PACKAGE_TARGETS) package-oni-conf

package-%: %
	emacs --batch \
	    --load oni-package.el \
	    --funcall package-initialize \
	    --eval '(package-upload-file "$^")'

package-oni-conf:
	emacs --batch \
	    --load oni-package.el \
	    --funcall package-initialize \
	    --eval "(package-upload-file (car (sort (file-expand-wildcards \"oni-conf/dist/*.tar\") #'string>)))"

install-%:
	emacs --batch \
	    --load oni-package.el \
	    --funcall package-initialize \
	    --eval '(package-refresh-contents)' \
	    $(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
	    --eval "(package-install-file \"$*.el\")" \

install-oni-conf:
	emacs --batch \
	    --load oni-package.el \
	    --funcall package-initialize \
	    --eval '(package-refresh-contents)' \
	    $(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \
	    --eval "(package-install-file (car (sort (file-expand-wildcards \"oni-conf/dist/*.tar\") #'string>)))" \

test-%: install-%
	emacs --batch \
	    --load oni-package.el \
	    --funcall package-initialize \
	    --load ert \
	    --load "test/$*-test.el" \
	    --eval "(setq ert-batch-backtrace-right-margin nil)" \
	    --funcall ert-run-tests-batch-and-exit

test-oni-css: DEPS := oni-company oni-fci
test-oni-bookmark: DEPS := oni-data-dir
test-oni-php: DEPS := oni-flycheck oni-company oni-fci
test-oni-conf: DEPS := oni-yasnippet

clean:
	rm -fv $(FILES)