mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-17 15:04:04 +02:00
19 lines
290 B
Makefile
Executable file
19 lines
290 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_OPTIONS="noopt nostrip nocheck"
|
|
|
|
%:
|
|
dh $@
|
|
|
|
|
|
override_dh_auto_build:
|
|
@echo "no build is done here"
|
|
|
|
override_dh_installchangelogs:
|
|
@echo "no change long installation"
|
|
|
|
override_dh_auto_test:
|
|
@echo "no testing"
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|