aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremmett1 <me@emmett1.my>2026-03-31 07:51:46 +0800
committeremmett1 <me@emmett1.my>2026-03-31 07:51:46 +0800
commitde7d2508625dba686351375fdd956ffc690d35aa (patch)
tree1c8c85effce7d1328ff45a0c624a7db19010afb7
parenta6a59803953c1325615d30609c5abf43ed02829e (diff)
renamed filesv0.1
-rw-r--r--LICENSE (renamed from license)0
-rw-r--r--README (renamed from readme.txt)0
-rw-r--r--makefile21
3 files changed, 0 insertions, 21 deletions
diff --git a/license b/LICENSE
index c7dad4c..c7dad4c 100644
--- a/license
+++ b/LICENSE
diff --git a/readme.txt b/README
index bd9c850..bd9c850 100644
--- a/readme.txt
+++ b/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