41 lines
720 B
Makefile
41 lines
720 B
Makefile
|
.PHONY: build Zinc
|
||
|
|
||
|
## incase wp2git doesn't run:
|
||
|
## import sys
|
||
|
## # locale.setlocale(locale.LC_ALL, '')
|
||
|
## lang = sys.getfilesystemencoding()
|
||
|
|
||
|
|
||
|
all:
|
||
|
|
||
|
diff:
|
||
|
cd Wikipedia_Wikipedia_is_succeeding && git whatchanged -p --color-words
|
||
|
|
||
|
install:
|
||
|
reset
|
||
|
./setup.py install --user
|
||
|
|
||
|
test:
|
||
|
reset
|
||
|
wp2git Zinc
|
||
|
|
||
|
Zinc:
|
||
|
reset
|
||
|
wp2git --site https://en.wikipedia.org/w/ Zinc
|
||
|
|
||
|
hershey:
|
||
|
reset
|
||
|
wp2git --site https://en.wikipedia.org/w/ Milton_Hershey_School
|
||
|
|
||
|
NOTFAIL:
|
||
|
reset
|
||
|
wp2git --site https://en.wikipedia.org/w/ "Wikipedia:Wikipedia_is_succeeding"
|
||
|
|
||
|
FAIL:
|
||
|
reset
|
||
|
wp2git --site https://en.wikipedia.org/w/ "Wikipedia:Wikipedia_is_failing"
|
||
|
|
||
|
POLICY:
|
||
|
reset
|
||
|
wp2git --site https://en.wikipedia.org/w/ "Wikipedia:Verifiability"
|