summary refs log tree commit diff
path: root/Makefile
blob: a80fc351d493ff1bea57364a67fda7a327abdb9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BINS = broadcast

CFLAGS += -Wall -Wextra -Wpedantic
LDLIBS = -lutil

all: tags $(BINS)

tags: *.c
	ctags -w *.c

clean:
	rm -f tags $(BINS)

.PHONY: all clean