]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/test/Makefile
fixing up c code
[biopieces.git] / code_c / Maasha / src / test / Makefile
1 CC      = gcc
2 # Cflags = -Wall -Werror
3 Cflags = -Wall -Werror -g -pg # for gprof
4
5 INC_DIR = ../inc/
6 LIB_DIR = ../lib/
7
8 INC = -I $(INC_DIR)
9 LIB = -lm $(LIB_DIR)*.o
10
11 all: test
12
13 test: test_strings
14
15 test_strings: test_strings.c
16         $(CC) $(Cflags) $(INC) $(LIB) test_strings.c -o test_strings
17
18 clean:
19         rm -f test_strings