o add ff lib

o add ff lib samples
o add ff linux sample
This commit is contained in:
David Voswinkel
2009-05-20 21:31:45 +02:00
parent 8929a96e6e
commit efe6ba19c4
107 changed files with 60631 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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 $<