2007-05-28 09:09:47 +00:00
|
|
|
|
|
|
|
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
|