history/Makefile

9 lines
155 B
Makefile
Raw Normal View History

2024-02-24 07:36:22 +00:00
CFLAGS?=-s -Os -pedantic -Wall -Wextra -Werror -DENABLE_SSL
LDFLAGS=-lssl -lcrypto
2023-10-09 14:16:02 +00:00
CC?=cc
2023-08-01 19:42:36 +00:00
all:
2024-02-24 07:36:22 +00:00
$(CC) *.c $(CFLAGS) $(LDFLAGS) -obot
2023-08-01 19:42:36 +00:00
clean:
rm irc.* bot