CC = gcc


all: build.exe
	@echo tools built


build.exe: build.c
	@$(CC) build.c -o build.exe
	
	
clean:
	@rm -f build.exe
