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

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

all: tags $(BINS)

tags: *.c
	ctags -w *.c

clean:
	rm -f tags $(BINS)

.PHONY: all clean