commit 2254ae69911673c071276967d6823316939ae7be
parent 6397e67dc665a7ad72a898f522215e01f70a96f5
Author: aabacchus <ben@bvnf.space>
Date: Tue, 29 Nov 2022 15:55:49 +0000
rename to sxirc
Diffstat:
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1 @@
+sxirc
diff --git a/Makefile b/Makefile
@@ -1,11 +1,11 @@
.POSIX:
-BIN = sxtest
+BIN = sxirc
LIBS = -lsx -lXt
CFLAGS = -Wall -Wextra -pedantic -Wno-unused-parameter -Og -g $(EXTRA_CFLAGS)
-$(BIN): a.c
- $(CC) a.c $(CFLAGS) -o $(BIN) $(LIBS)
+$(BIN): sxirc.c
+ $(CC) sxirc.c $(CFLAGS) -o $(BIN) $(LIBS)
clean:
rm -f $(BIN)
diff --git a/a.c b/sxirc.c