mirror of
https://github.com/3proxy/3proxy.git
synced 2026-06-02 22:40:12 +08:00
24 lines
458 B
Makefile
24 lines
458 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
ln -sf Makefile.Linux Makefile
|
|
|
|
override_dh_auto_build:
|
|
$(MAKE)
|
|
|
|
override_dh_auto_install:
|
|
$(MAKE) DESTDIR=debian/3proxy install
|
|
|
|
override_dh_installman:
|
|
|
|
override_dh_usrlocal:
|
|
|
|
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
|