proxmox_routing/debian/rules

19 lines
263 B
Plaintext
Raw Normal View History

2019-01-24 21:14:26 +01:00
#!/usr/bin/make -f
2019-01-24 22:24:22 +01:00
DESTDIR=$$(pwd)/debian/proxmox-routing
2019-01-24 21:14:26 +01:00
%:
dh $@
override_dh_auto_install:
2019-01-24 22:24:22 +01:00
$(MAKE) DESTDIR=$(DESTDIR) install
2019-01-24 21:14:26 +01:00
override_dh_auto_build:
@
override_dh_usrlocal:
@
2019-01-24 22:24:22 +01:00
override_dh_auto_clean:
if [ -d "$(DESTDIR)" ]; then rm -r $(DESTDIR); fi