CFLAGS = -Wall
SRCS = load_rw.c
OBJS = $(SRCS:%.c=%.o)

load_rw: ${OBJS}
	${CC} -o $@ $^

clean:
	rm *.o load_rw
