# Makefile for GMake (Linux/macOS)
.PHONY: all clean

all: execute

execute: execute.c
	gcc -o execute execute.c

clean:
	rm -f execute
