blob: 3fc13c8053bba7b64dbda492abe28dceaa00d126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Makefile for mdns-repeater
CFLAGS=-Wall -Os
LDFLAGS=-s
.PHONY: all clean
all: mdns-repeater
mdns-repeater: mdns-repeater.o
clean:
-$(RM) *.o
-$(RM) mdns-repeater
|