CC = gcc CFLAGS = -Wall LIBS = -lreadline tinysh: main.c $(CC) $(CFLAGS) main.c -o tinysh $(LIBS) clean: rm -f tinysh