aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Gustafsson <robg@student.chalmers.se>2017-09-28 13:41:45 +0200
committerRobert Gustafsson <robg@student.chalmers.se>2017-09-28 13:41:45 +0200
commit03bb5c1c6ddf0f6ea9ef3381769cc41969fc2a5d (patch)
tree7f66abedda352bf4c9e9a8ece7d173ed4c65ac58 /Makefile
parent24145fa0d3f33141ac074d022891b07e249f4582 (diff)
downloadmidbro-03bb5c1c6ddf0f6ea9ef3381769cc41969fc2a5d.tar.gz
midbro-03bb5c1c6ddf0f6ea9ef3381769cc41969fc2a5d.tar.bz2
Add basic fifoqueue to buffer events
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c8484f9..8b304a1 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,13 @@ LDFLAGS = -L/usr/local/lib -lbroccoli
all: pasad
-pasad: pasad.o
- $(CC) pasad.o -o pasad $(LDFLAGS)
+pasad: pasad.o fifoqueue.o
+ $(CC) pasad.o fifoqueue.o -o pasad $(LDFLAGS)
pasad.o: pasad.c
$(CC) $(CFLAGS) pasad.c
+fifoqueue.o: fifoqueue.c
+ $(CC) -c -Wall fifoqueue.c
clean:
rm *.o pasad