Let the Python interpreter be specified externally
This commit is contained in:
parent
a3ee31e6e6
commit
3b00199dd2
@ -1,6 +1,7 @@
|
|||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-O3 -static
|
CFLAGS=-O3 -static
|
||||||
NOSTDLIBFLAGS=-fno-builtin -static -nostdlib -fomit-frame-pointer
|
NOSTDLIBFLAGS=-fno-builtin -static -nostdlib -fomit-frame-pointer
|
||||||
|
PYTHON=python
|
||||||
|
|
||||||
EXAMPLES=basic sindex strncmp arguments ibranch sendmail crackme indexhell helloworld simple_copy simpleassert
|
EXAMPLES=basic sindex strncmp arguments ibranch sendmail crackme indexhell helloworld simple_copy simpleassert
|
||||||
OTHER_EXAMPLES=nostdlib
|
OTHER_EXAMPLES=nostdlib
|
||||||
@ -29,5 +30,5 @@ simpleassert: simpleassert.c
|
|||||||
|
|
||||||
# crackme needs to be generated
|
# crackme needs to be generated
|
||||||
crackme.c: crackme.py
|
crackme.c: crackme.py
|
||||||
python crackme.py > $@
|
$(PYTHON) crackme.py > $@
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user