blob: 32b03e0266b588f1a160fdebb386c38e13c2b2e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
CFLAGS += -Wall -Wextra -Wpedantic
CFLAGS += -I/usr/local/include
LDFLAGS += -L/usr/local/lib
LDLIBS = -lcurses -ltls
all: tags chat
tags: *.c
ctags -w *.c
clean:
rm -f tags chat
|