# CSE 333 Makefile for Section 2 (simplestring.c) CC = gcc CFLAGS = -std=c17 -g -Wall EXEC_1 = reverse # Compiles reverse; this is the default rule that # fires if a user just types "make" in the same directory as this # Makefile. all: reverse reverse: $(EXEC_1).c $(CC) $(CFLAGS) -o $(EXEC_1) $(EXEC_1).c clean: rm -f *.o *~ $(EXEC_1)