mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
13 lines
316 B
Makefile
13 lines
316 B
Makefile
CC = gcc
|
|
CFLAGS = -O3 -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-but-set-variable
|
|
LIBS = -lxml2 -lssl -lresolv -lncurses -lstrophe
|
|
|
|
profanity: clean
|
|
$(CC) profanity.c $(LIBS) -o profanity
|
|
$(CC) curses_example.c -lncurses -o curses_example
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f profanity
|
|
rm -f curses_example
|