11 lines
205 B
Makefile
Executable file
11 lines
205 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
DESTDIR=$(CURDIR)/debian/vim-orgmode
|
|
ADDONSDIR=/usr/share/vim/addons
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- DESTDIR=$(DESTDIR) VIMDIR=$(ADDONSDIR)
|
|
|
|
%:
|
|
dh $@
|