From de7d2508625dba686351375fdd956ffc690d35aa Mon Sep 17 00:00:00 2001 From: emmett1 Date: Tue, 31 Mar 2026 07:51:46 +0800 Subject: [PATCH] renamed files --- license => LICENSE | 0 readme.txt => README | 0 makefile | 21 --------------------- 3 files changed, 21 deletions(-) rename license => LICENSE (100%) rename readme.txt => README (100%) delete mode 100644 makefile diff --git a/license b/LICENSE similarity index 100% rename from license rename to LICENSE diff --git a/readme.txt b/README similarity index 100% rename from readme.txt rename to README diff --git a/makefile b/makefile deleted file mode 100644 index e812067..0000000 --- a/makefile +++ /dev/null @@ -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