diff options
author | Rory Bradford <roryrjb@gmail.com> | 2022-06-02 13:00:52 +0100 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2022-06-02 13:00:52 +0100 |
commit | fa0fe3da2bad35c79d9588d5fc6c3e554671533e (patch) | |
tree | 3c6f7d2333961274576c719b1c36b01e171a05a3 /Makefile | |
parent | 49f55d4b648021ba143bbf058242e4553d285fea (diff) | |
download | rf-fa0fe3da2bad35c79d9588d5fc6c3e554671533e.tar.gz |
Remove config
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile index a0505b3..21fe5e7 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ BIN = rf VERSION = 0.0.5 -OBJS = rf.o ignore.o config.o include/common/strl.o +OBJS = rf.o ignore.o include/common/strl.o PREFIX = /usr/local INCLUDE += -Iinclude/common CFLAGS := -std=c99 -pedantic -O2 \ @@ -26,10 +26,7 @@ rf.1: rf.1.scd rfignore.5: rfignore.5.scd scdoc < $< > $@ -rfconfig.5: rfconfig.5.scd - scdoc < $< > $@ - -install: $(BIN) rf.1 rfignore.5 rfconfig.5 +install: $(BIN) rf.1 rfignore.5 mkdir -p \ $(DESTDIR)$(PREFIX)/bin \ $(DESTDIR)$(PREFIX)/man/man1 \ @@ -37,7 +34,6 @@ install: $(BIN) rf.1 rfignore.5 rfconfig.5 install -m755 $(BIN) $(DESTDIR)$(PREFIX)/bin/ install -m444 rf.1 $(DESTDIR)$(PREFIX)/man/man1/ install -m444 rfignore.5 $(DESTDIR)$(PREFIX)/man/man5/ - install -m444 rfconfig.5 $(DESTDIR)$(PREFIX)/man/man5/ clean: @rm -vf $(BIN) *.1 *.5 |