mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-03 21:47:10 +00:00
To simplify build script, and make it easier spliting two packages, use .install/.dirs/.docs instead of rules. Signed-off-by: Takuya ASADA <syuu@scylladb.com> Message-Id: <1461960695-30647-1-git-send-email-syuu@scylladb.com>
19 lines
430 B
Makefile
Executable File
19 lines
430 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
override_dh_auto_build:
|
|
./configure.py --disable-xen --enable-dpdk --mode=release --static-stdc++ --static-thrift --compiler=@@COMPILER@@
|
|
ninja
|
|
|
|
override_dh_auto_clean:
|
|
rm -rf build/release seastar/build
|
|
rm -rf Cql.tokens
|
|
rm -rf build.ninja seastar/build.ninja
|
|
|
|
override_dh_installinit:
|
|
dh_installinit --no-start @@DH_INSTALLINIT@@
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=scylla-server-dbg
|
|
%:
|
|
dh $@
|