renamed files

This commit is contained in:
2026-03-31 07:51:46 +08:00
parent a6a5980395
commit de7d250862
3 changed files with 0 additions and 21 deletions
View File
View File
-21
View File
@@ -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