CC = gcc # Cflags = -Wall -Werror Cflags = -Wall -Werror -g -pg # for gprof INC_DIR = ../inc/ LIB_DIR = ../lib/ INC = -I $(INC_DIR) LIB = -lm $(LIB_DIR)*.o all: test test: test_strings test_strings: test_strings.c $(CC) $(Cflags) $(INC) $(LIB) test_strings.c -o test_strings clean: rm -f test_strings