update test program

This commit is contained in:
root
2011-03-23 21:32:51 +00:00
parent 9245824a65
commit 46b296ff92
2 changed files with 48 additions and 16 deletions

9
test/Makefile Normal file
View File

@@ -0,0 +1,9 @@
CFLAGS = -Wall
SRCS = load_rw.c
OBJS = $(SRCS:%.c=%.o)
load_rw: ${OBJS}
${CC} -o $@ $^
clean:
rm *.o load_rw