#Variables
CC = gcc
OBJ = 

#Linking Executable
ScanfTest: ScanfTest.c $(OBJ)
	$(CC) -o ScanfTest -lm ScanfTest.c $(OBJ)

clean:
	rm ScanfTest *.o *~
