about summary refs log tree commit diff stats
path: root/doc/pydoc/ranger.fsobject.directory.html
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-29 21:47:39 +0200
committerhut <hut@lavabit.com>2010-04-29 21:47:39 +0200
commit9a248482ca96bc354dbde644fd3f3b6f5292222b (patch)
treee9fb86be01e201c665d9a8d2585f427e34e8956e /doc/pydoc/ranger.fsobject.directory.html
parent5fab6bc0c6f26d01571dc38f1a6da07c9b7d93dc (diff)
downloadranger-9a248482ca96bc354dbde644fd3f3b6f5292222b.tar.gz
Added documentation for remaining key combinations (excluding z*, g*,...)
Diffstat (limited to 'doc/pydoc/ranger.fsobject.directory.html')
0 files changed, 0 insertions, 0 deletions
corator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
.POSIX:

BIN = rf
VERSION = 0.0.5
OBJS = rf.o ignore.o config.o include/common/strl.o
PREFIX = /usr/local
INCLUDE += -Iinclude/common
CFLAGS := -std=c99 -pedantic -O2 \
	  -Wall -Wextra -Wsign-compare \
	  -fstack-protector-strong -fpie \
	  -D_FORTIFY_SOURCE=2 \
	  -DVERSION='"$(VERSION)"' \
	  $(INCLUDE)

all: $(BIN)

$(BIN): $(OBJS)
	$(CC) $(CFLAGS) -o $(BIN) $(OBJS)

static: $(OBJS)
	$(CC) $(CFLAGS) -static -o $(BIN) $(OBJS)

rf.1: rf.1.scd
	scdoc < $< > $@

rfignore.5: rfignore.5.scd
	scdoc < $< > $@

rfconfig.5: rfconfig.5.scd
	scdoc < $< > $@

install: $(BIN) rf.1 rfignore.5 rfconfig.5
	mkdir -p \
		$(DESTDIR)$(PREFIX)/bin \
		$(DESTDIR)$(PREFIX)/man/man1 \
		$(DESTDIR)$(PREFIX)/man/man5
	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
	@find . -name \*.o -exec rm -v {} +