aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Gustafsson <robg@student.chalmers.se>2017-09-28 14:25:01 +0200
committerAndreas Lindhé <andreas@lindhe.io>2017-10-09 12:14:35 +0200
commit209a57957267823302cd8aedf47de406edbc6488 (patch)
tree892312be721ed72ede629fa66bff889b426013ec /Makefile
parent2f5b120d90ce98676447df7fbf27397029d84ebd (diff)
downloadmidbro-209a57957267823302cd8aedf47de406edbc6488.tar.gz
midbro-209a57957267823302cd8aedf47de406edbc6488.tar.bz2
Some renaming
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 8b304a1..0000000
--- a/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-CC=gcc
-CFLAGS = -c -Wall -I/usr/local/include -I/usr/local/include -DBROCCOLI
-LDFLAGS = -L/usr/local/lib -lbroccoli
-
-all: pasad
-
-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