summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 26 insertions, 0 deletions
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
+