update Makefile
This commit is contained in:
21
Makefile
21
Makefile
@@ -1,4 +1,8 @@
|
|||||||
SRC = systemd.el systemd-company.el
|
SRC = systemd.el
|
||||||
|
DATA = unit-directives.txt network-directives.txt
|
||||||
|
DISTFILES := Makefile $(SRC) $(DATA) LICENSE README systemd-pkg.el tests
|
||||||
|
|
||||||
|
VERSION := $(shell awk '/^;; Version:/ {print $$3}' $(SRC))
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
datarootdir := $(PREFIX)/share
|
datarootdir := $(PREFIX)/share
|
||||||
@@ -8,6 +12,12 @@ EMACS = emacs
|
|||||||
|
|
||||||
all: $(SRC:.el=.elc)
|
all: $(SRC:.el=.elc)
|
||||||
|
|
||||||
|
systemd-pkg.el: $(SRC)
|
||||||
|
printf "(define-package \"systemd\" \"%s\" " $(VERSION) > $@
|
||||||
|
echo "\"Major mode for editing systemd units\")" >> $@
|
||||||
|
|
||||||
|
systemd.elc: $(DATA)
|
||||||
|
|
||||||
check: tests/systemd-tests.el systemd.elc
|
check: tests/systemd-tests.el systemd.elc
|
||||||
@$(EMACS) -Q --batch -L . --eval "(progn \
|
@$(EMACS) -Q --batch -L . --eval "(progn \
|
||||||
(load-file \"tests/systemd-tests.el\") \
|
(load-file \"tests/systemd-tests.el\") \
|
||||||
@@ -16,11 +26,18 @@ check: tests/systemd-tests.el systemd.elc
|
|||||||
clean:
|
clean:
|
||||||
$(RM) $(SRC:.el=.elc)
|
$(RM) $(SRC:.el=.elc)
|
||||||
|
|
||||||
|
dist: clean systemd-pkg.el
|
||||||
|
mkdir systemd-$(VERSION)
|
||||||
|
cp -r $(DISTFILES) systemd-$(VERSION)
|
||||||
|
tar cf systemd-$(VERSION).tar systemd-$(VERSION)
|
||||||
|
rm -rf systemd-$(VERSION)
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -d $(DESTDIR)$(emacsdir)/systemd
|
install -d $(DESTDIR)$(emacsdir)/systemd
|
||||||
install -m644 $(SRC) $(SRC:.el=.elc) -t $(DESTDIR)$(emacsdir)/systemd
|
install -m644 $(SRC) $(SRC:.el=.elc) -t $(DESTDIR)$(emacsdir)/systemd
|
||||||
|
install -m644 $(DATA) -t $(DESTDIR)$(emacsdir)/systemd
|
||||||
|
|
||||||
.el.elc:
|
.el.elc:
|
||||||
$(EMACS) -L . --batch -f batch-byte-compile $<
|
$(EMACS) -L . --batch -f batch-byte-compile $<
|
||||||
|
|
||||||
.PHONY: all check clean install
|
.PHONY: all check clean dist install
|
||||||
|
|||||||
Reference in New Issue
Block a user