Take care file format have change. You must use corresponding version of ecogrep You can use -t option to go back to the old format without tm computation git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPCR/trunk@238 60f365c0-8329-0410-b2a4-ec073aeeaa1d
18 lines
350 B
Makefile
18 lines
350 B
Makefile
MACHINE=MAC_OS_X
|
|
LIBPATH= -Llibapat -LlibecoPCR -Llibthermo
|
|
MAKEDEPEND = gcc -D$(MACHINE) -M $(CPPFLAGS) -o $*.d $<
|
|
|
|
CC=gcc
|
|
CFLAGS= -W -Wall -O2 -g
|
|
|
|
default: all
|
|
|
|
%.o: %.c
|
|
$(CC) -D$(MACHINE) $(CFLAGS) -c -o $@ $<
|
|
|
|
%.P : %.c
|
|
$(MAKEDEPEND)
|
|
@sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' < $*.d > $@; \
|
|
rm -f $*.d; [ -s $@ ] || rm -f $@
|
|
|
|
include $(SRCS:.c=.P) |