diff options
| -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 |
