basic application

git-svn-id: svn+ssh://en.codiert.org/home/staff/ben/dev/misc.svn/projects/fpgafs@400 766a2236-cff9-0310-b0c0-a81a5f92509a
This commit is contained in:
ben
2007-09-12 19:07:32 +00:00
parent 96948e503d
commit 0ae8873d37
4 changed files with 67 additions and 4 deletions

15
app/Makefile Normal file
View File

@@ -0,0 +1,15 @@
#/*********************************************
# * Benjamin Krill <ben@codiert.org>
# *********************************************/
CFLAGS= -c -I../libfpga
CC = gcc
SRCS = fifo_shift.c
OBJS = $(SRCS:%.c=%.o)
fifo_shift: ${OBJS}
${CC} $^ -o $@ -lfpga
clean:
rm *.o *.so.*