git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPCR/branches/refactoring@17 60f365c0-8329-0410-b2a4-ec073aeeaa1d
This commit is contained in:
21
src/Makefile
21
src/Makefile
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
CC=gcc
|
||||||
|
CFLAGS=-g
|
||||||
|
EXEC=ecoPCR
|
||||||
|
SRC= ecoPCR.c
|
||||||
|
OBJ= $(SRC:.c=.o)
|
||||||
|
LIBPATH= -L libapat/ libecoPCR/
|
||||||
|
LIB= -lapat -lecoPCR
|
||||||
|
|
||||||
|
MACHINE=MAC_OS_X
|
||||||
|
|
||||||
|
all: ecoPCR
|
||||||
|
|
||||||
|
ecoPCR: ecoPCR.o
|
||||||
|
gcc -o ecoPCR ecoPCR.o -Llibapat/ -LlibecoPCR/ -lapat -lecoPCR
|
||||||
|
|
||||||
|
ecoPCR.o: ecoPCR.c
|
||||||
|
gcc -D$(MACHINE) -o ecoPCR.o -c ecoPCR.c -g
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o
|
Reference in New Issue
Block a user