# Setup a compile environment and additional flags CC = gcc CFLAGS = -std=c99 -Wall -W -pedantic # EDIT this variable! PROJECT = vuln3 main: $(PROJECT) # Generic rule to specify dependency on $(DEPS) %.o: %.c $(DEPS) $(CC) -c -o $@ $< $(CFLAGS) # Just a simple rule to help with cleanin clean : rm -f $(PROJECT)