]> the.earth.li Git - mqtt-arp.git/blob - Makefile
Silently drop RTM_DELNEIGH/RTM_GETNEIGH messages
[mqtt-arp.git] / Makefile
1 CC = gcc
2 CFLAGS = -Wall
3 LDFLAGS =
4
5 all: mqtt-arp
6
7 mqtt-arp: mqtt-arp.o
8         $(CC) -o $@ $< $(LDFLAGS) -lmosquitto
9
10 %.o: %.c
11         $(CC) -c -o $@ $< $(CFLAGS)
12
13 .PHONY: clean
14
15 clean:
16         rm -f mqtt-arp *.o