CC = gcc all: BasicProj BasicProj: BasicProj.c $(CC) -o $@ $? clean: rm -f *.o *.exe *~ core BasicProj