]> gitweb.michael.orlitzky.com - emacs-keys.git/blob - makefile
Initial commit with a hand-written makefile.
[emacs-keys.git] / makefile
1 PN = emacs-keys
2 PREFIX := /usr/local
3
4 # So that "make" doesn't try to install stuff.
5 all:
6
7 install-console: $(DESTDIR)$(PREFIX)/share/$(PN)/console.map
8 install-xorg: $(DESTDIR)$(PREFIX)/share/$(PN)/Xmodmap
9
10 $(DESTDIR)$(PREFIX)/share/$(PN)%: src/%
11 install -D --mode=644 $< $@