From 7fcbf0c689566dbe5a58eac0be7693b839cd5444 Mon Sep 17 00:00:00 2001 From: Timo Dritschler Date: Wed, 23 Apr 2014 18:24:12 +0200 Subject: Initial Commit for "KIT Infiniband Remote Objects" (KIRO) Library Created KiroTrb (KIRO Transmittable Ring Buffer) class Wrote short test for KiroTrb class --- Makefile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5505df9 --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +CC=gcc +CFLAGS=-std=c99 -Wall -g -gdwarf-2 $(shell pkg-config --cflags gobject-2.0) +LDFLAGS= -lrdmacm -libverbs -lpthread $(shell pkg-config --libs gobject-2.0) + + +all: base + +base: kiro-trb.o + +kiro-cbr.o: kiro-trb.c kiro-trb.h + $(CC) $(CFLAGS) $(LDFLAGS) -c kiro-trb.c -o kiro-trb.o + + +test-trb: test + +test: kiro-trb.o test.c + $(CC) $(CFLAGS) $(LDFLAGS) test.c kiro-trb.o -o test-tbr + + +clean: + rm -f *.o test-trb + + + +rebuild: clean all + -- cgit v1.2.3