CC=gcc
OUT=prog.out
ARGS=students.txt grades.txt
CFLAGS=-Wall

all: compile run

compile: 
	$(CC) $(CFLAGS) main.c -o $(OUT)

run:
	./$(OUT) $(ARGS)
