diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..2b05b14 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,19 @@ +# +# Scyther makefile +# +# Scyther really uses the scons program (http://www.scons.org/), of +# which there is a local copy present. So this is just delegating stuff. +# +# +all: + ./scons.py all + +windows: + ./scons.py windows + +linux: + ./scons.py linux + +tags: + ./scons.py tags +