SHELL=/bin/sh
MAKE=make
AR=ar
include ../Make.cfg

CFLAGS=$(COPTIONS)

OBJS=cfft2.o cfftb.o cfftf.o cffti.o roll2.o

all: $(OBJS)

libyor: make.done

# gist/make.done touched when libyor.a is clobbered
make.done: $(OBJS) ../gist/make.done
	$(AR) r ../yorick/libyor.a $(OBJS)
	@touch $@

config:
	@:

clean::
	rm -f *~ '#'* *.o *.a *.done core a.out

distclean:: clean
