19 lines
263 B
Makefile
Executable file
19 lines
263 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
DESTDIR=$$(pwd)/debian/proxmox-routing
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_install:
|
|
$(MAKE) DESTDIR=$(DESTDIR) install
|
|
|
|
override_dh_auto_build:
|
|
@
|
|
|
|
override_dh_usrlocal:
|
|
@
|
|
|
|
override_dh_auto_clean:
|
|
if [ -d "$(DESTDIR)" ]; then rm -r $(DESTDIR); fi
|