#
CFLAGS = -O0 -g
#
CC = gcc

SRCS = \
odedriver.c jacobn.c lubksb.c ludcmp.c nrutil.c odeint.c stiff.c

OBJS = \
odedriver.o jacobn.o lubksb.o ludcmp.o nrutil.o odeint.o stiff.o

ode: $(OBJS) $(SRCS) makefile
	$(CC) $(CFLAGS) -o ode $(OBJS)

# dependencies
$(OBJS) : nr.h nrutil.h decs.h defs.h makefile

