David Voswinkel efe6ba19c4 o add ff lib
o add ff lib samples
o add ff linux sample
2009-05-20 21:31:45 +02:00

18 lines
164 B
Makefile

bin = fftest
src = ff.c main.c diskio.c
objs=$(src:.c=.o)
all: $(src) $(bin)
$(bin): $(objs)
gcc $(ldflags) $(objs) -o $@
%.o : %.c
gcc $(cflags) -c $<