summary refs log tree commit diff
path: root/port/caesar/Makefile
blob: 01205b16ba693a91f1c730e3407b89596203a513 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PREFIX = ~/.local
MANDIR = ${PREFIX}/share/man

LDLIBS = -lm

all: caesar rot13

clean:
	rm -f caesar rot13

install: caesar rot13 caesar.6
	install -d ${PREFIX}/bin ${MANDIR}/man6
	install caesar rot13 ${PREFIX}/bin
	install -m 644 caesar.6 ${MANDIR}/man6/caesar.6
	install -m 644 caesar.6 ${MANDIR}/man6/rot13.6

uninstall:
	rm -f ${PREFIX}/bin/caesar ${PREFIX}/bin/rot13
	rm -f ${MANDIR}/man6/caesar.6 ${MANDIR}/man6/rot13.6
d>June McEnroe 2012-01-22Add VCS repo directories to wildignoreJune McEnroe 2012-01-22Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe 2012-01-22Add vim-spaceJune McEnroe 2012-01-22Add AutoCloseJune McEnroe 2012-01-22Add binding for GundoJune McEnroe 2012-01-22Add GundoJune McEnroe 2012-01-22Add Jellybeans colorschemeJune McEnroe 2012-01-22Add syntasticJune McEnroe 2012-01-21Add PowerlineJune McEnroe 2012-01-21Add quicktaskJune McEnroe 2012-01-15Moved comments out of mapsJune McEnroe 2012-01-14Disable scrollbarsJune McEnroe