mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 13:18:59 +08:00
20 lines
442 B
Makefile
Executable File
20 lines
442 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# Setting the build system is still required, because otherwise the GNUmakefile gets picked up
|
|
override_dh_auto_configure:
|
|
ln -s cargo-vendor/vendor vendor
|
|
ln -s cargo-vendor/.cargo .cargo
|
|
dh_auto_configure --buildsystem=cmake -- -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
override_dh_clean:
|
|
dh_clean
|
|
-unlink .cargo
|
|
-unlink vendor
|