diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..32b03e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |