mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 06:56:21 +00: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
|