1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/Makefile
2012-02-03 01:35:20 +00:00

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