diff options
| author | emmett1 <me@emmett1.my> | 2026-03-31 07:51:46 +0800 |
|---|---|---|
| committer | emmett1 <me@emmett1.my> | 2026-03-31 07:51:46 +0800 |
| commit | de7d2508625dba686351375fdd956ffc690d35aa (patch) | |
| tree | 1c8c85effce7d1328ff45a0c624a7db19010afb7 | |
| parent | a6a59803953c1325615d30609c5abf43ed02829e (diff) | |
renamed filesv0.1
| -rw-r--r-- | LICENSE (renamed from license) | 0 | ||||
| -rw-r--r-- | README (renamed from readme.txt) | 0 | ||||
| -rw-r--r-- | makefile | 21 |
3 files changed, 0 insertions, 21 deletions
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 |
