CC=gcc -g all: test expand reverse_string clean: rm test; test: test.c $(CC) -o test test.c expand: expand.c $(CC) -o expand expand.c reverse_string: reverse_string.c $(CC) -o reverse_string reverse_string.c