mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 19:11:06 +00:00
21 lines
337 B
Makefile
21 lines
337 B
Makefile
|
|
configure: configure-stamp
|
||
|
|
configure-stamp:
|
||
|
|
dh_testdir
|
||
|
|
./setup.py config -lcrypto
|
||
|
|
touch configure-stamp
|
||
|
|
|
||
|
|
|
||
|
|
build: configure-stamp build-stamp
|
||
|
|
build-stamp:
|
||
|
|
dh_testdir
|
||
|
|
rm -rf debian/linkchecker debian/linkchecker-ssl
|
||
|
|
./setup.py build
|
||
|
|
touch build-stamp
|
||
|
|
|
||
|
|
clean:
|
||
|
|
dh_testdir
|
||
|
|
rm -f build-stamp configure-stamp
|
||
|
|
$(MAKE) clean
|
||
|
|
dh_clean
|
||
|
|
|