Added libstrophe examples
This commit is contained in:
18
Makefile
Normal file
18
Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f profanity
|
||||
rm -f roster
|
||||
rm -f active
|
||||
rm -f basic
|
||||
rm -f bot
|
||||
Reference in New Issue
Block a user