2019-05-02 17:10:48 +00:00
|
|
|
CC = gcc
|
|
|
|
FLAGS = -m32 -nostdlib -nostdinc -static -Wall -O2
|
|
|
|
|
2019-05-04 21:52:52 +00:00
|
|
|
clean: hash
|
2019-05-02 17:10:48 +00:00
|
|
|
@echo $(step_count)
|
|
|
|
${CC} ${FLAGS} main.c -o 0.out
|
|
|
|
|
2019-05-04 21:52:52 +00:00
|
|
|
remove:
|
|
|
|
echo "#define output" > hash.txt
|
2019-05-02 17:10:48 +00:00
|
|
|
rm *.out
|
2019-05-04 21:52:52 +00:00
|
|
|
|
|
|
|
hash:
|
|
|
|
./jasmin.sh
|