all: proy1 # variables CC = gcc CFLAGS= -O2 -Wall proy1: main.o $(CC) -o ejecuta.exe main.o main.o: main.c $(CC) $(CFLAGS) -c main.c