CC = gcc
FLAGS = -m32 -nostdlib -nostdinc -static -Wall -O2

clean:
	@echo $(step_count)
	${CC} ${FLAGS} main.c -o 0.out

remove: clean
	rm *.out