diff options
author | Robert Gustafsson <robg@student.chalmers.se> | 2017-09-28 14:25:01 +0200 |
---|---|---|
committer | Andreas Lindhé <andreas@lindhe.io> | 2017-10-09 12:14:35 +0200 |
commit | 209a57957267823302cd8aedf47de406edbc6488 (patch) | |
tree | 892312be721ed72ede629fa66bff889b426013ec /Makefile | |
parent | 2f5b120d90ce98676447df7fbf27397029d84ebd (diff) | |
download | midbro-209a57957267823302cd8aedf47de406edbc6488.tar.gz midbro-209a57957267823302cd8aedf47de406edbc6488.tar.bz2 |
Some renaming
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
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 |