mirror of
https://github.com/3proxy/3proxy.git
synced 2025-02-23 02:25:40 +08:00
17 lines
299 B
Plaintext
17 lines
299 B
Plaintext
![]() |
#!/usr/bin/make -f
|
||
|
|
||
|
%:
|
||
|
dh $@
|
||
|
|
||
|
override_dh_auto_build:
|
||
|
ln -s Makefile.Linux Makefile || true
|
||
|
dh_auto_build
|
||
|
|
||
|
override_dh_auto_clean:
|
||
|
find src/ -type f -name "*.o" -delete
|
||
|
find src/ -type f -name "Makefile.var" -delete
|
||
|
find bin/ -type f -executable -delete
|
||
|
rm -f Makefile
|
||
|
|
||
|
override_dh_usrlocal:
|