irC

an attempt at writing an irc "client"
git clone git://bvnf.space/irC.git
Log | Files | Refs | README

commit 5e6ad8b322b70cd1aa7d7d49d5df0c9eb57fdeb2
parent 99532fb1b1030d24f49807e11a896b90af5e7cc7
Author: aabacchus <ben@bvnf.space>
Date:   Sun, 13 Mar 2022 02:53:44 +0000

put user CFLAGS at end so they can override

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,6 @@ .POSIX: -XCFLAGS = $(CFLAGS) -Wall -Wextra -Wpedantic -g -Og -D_XOPEN_SOURCE=700 +XCFLAGS = -Wall -Wextra -Wpedantic -g -Og -D_XOPEN_SOURCE=700 $(CFLAGS) irC: irC.c $(CC) $(XCFLAGS) $(LDFLAGS) irC.c -o $@