18 lines
287 B
Makefile
Executable file
18 lines
287 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DESTDIR = debian/cosmic-edit
|
|
export VENDOR ?= 1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
if ! ischroot && test "${VENDOR}" = "1"; then \
|
|
just vendor; \
|
|
fi
|
|
|
|
override_dh_auto_build:
|
|
just build-vendored
|
|
|
|
override_dh_auto_install:
|
|
just rootdir=$(DESTDIR) install
|