mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-25 10:59:53 +03:00
d41cffb2ab
CFLAGS and LDFLAGS are not used in this rules file. and verbose switch should be disabled by default
19 lines
478 B
Makefile
Executable File
19 lines
478 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
if [ $(shell uname -m) = 'x86_64' ]; then echo "1\n2\n" | ./configure; fi
|
|
if [ $(shell uname -m) = 'i686' ]; then echo "1\n1\n" | ./configure; fi
|
|
if [ $(shell uname -m) = 'armv6l' ]; then echo "1\n1\n" | ./configure; fi
|
|
|
|
override_dh_auto_clean:
|
|
rm -fr Makefile* usr bin tmp src/bin/BuiltHamcoreFiles
|
|
|
|
override_dh_auto_install:
|
|
patch -f < debian/makefile.patch
|
|
mkdir -p usr/bin
|
|
make install
|