CC = gcc CFLAGS = -Wall -m64 -O3 default: testSort testSort:testSort.o $(CC) $(CFLAGS) $(LDFLAGS) testSort.o -o $@ timertest.o: testSort.c $(CC) $(CFLAGS) -c $< -o $@ clean: $(RM) testSort.o testSort