sirc

A simple tui multi server irc client
Log | Files | Refs | README | LICENSE

commit de7d2508625dba686351375fdd956ffc690d35aa
parent a6a59803953c1325615d30609c5abf43ed02829e
Author: emmett1 <me@emmett1.my>
Date:   Tue, 31 Mar 2026 07:51:46 +0800

renamed files

Diffstat:
Rlicense -> LICENSE | 0
Rreadme.txt -> README | 0
Dmakefile | 21---------------------
3 files changed, 0 insertions(+), 21 deletions(-)

diff --git a/license b/LICENSE diff --git a/readme.txt b/README diff --git a/makefile b/makefile @@ -1,21 +0,0 @@ -CC = cc -CFLAGS = -std=c99 -Wall -Wextra -Wpedantic -O2 -LDFLAGS = -lncurses -lpthread -lssl -lcrypto - -TARGET = sirc -SRC = sirc.c - -.PHONY: all clean install - -all: $(TARGET) - -$(TARGET): $(SRC) - $(CC) $(CFLAGS) -std=gnu99 -o $@ $^ $(LDFLAGS) - -clean: - rm -f $(TARGET) - -install: $(TARGET) - install -Dm755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET) - -PREFIX ?= $(HOME)/.local