mirror of
https://github.com/3proxy/3proxy.git
synced 2026-06-13 11:00:11 +08:00
18 lines
247 B
Makefile
18 lines
247 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_auto_clean:
|
|
$(MAKE) clean
|
|
rm -f Makefile
|