1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/Makefile

21 lines
496 B
Makefile
Raw Normal View History

2012-02-02 19:00:15 -05:00
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) roster.c $(LIBS) -o roster
$(CC) active.c $(LIBS) -o active
$(CC) basic.c $(LIBS) -o basic
$(CC) bot.c $(LIBS) -o bot
$(CC) curses_example.c -lncurses -o curses_example
2012-02-02 19:00:15 -05:00
.PHONY: clean
clean:
rm -f profanity
rm -f roster
rm -f active
rm -f basic
rm -f bot
rm -f curses_example