]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/test/Makefile
fixed bug in remove_indels
[biopieces.git] / code_c / Maasha / src / test / Makefile
1 # Martin Asser Hansen (mail@maasha.dk) Copyright (C) 2008 - All right reserved
2
3 CC      = gcc
4 CFLAGS  = -Wall -Werror
5
6 INC = -I ../inc/ -I $(HOME)/maasha_install/include/
7 LIB = -lm ../lib/*.o
8
9 all: test
10
11 test: test_common
12
13 test_common: test_common.c
14         $(CC) $(CFLAGS) $(INC) $(LIB) test_common.c -o test_common
15
16 clean:
17         rm test_common