summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dfb3aa6ae18fa2967abed4f5ddd8c3043a84b661 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PREFIX ?= /usr/local
BINDIR ?= /bin

all: xorcat

clean:
	rm -f xorcat

xorcat: xorcat.c

install: xorcat
	install -m755 xorcat -t "$(DESTDIR)$(PREFIX)$(BINDIR)"

uninstall:
	rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/xorcat"

.PHONY: all clean install uninstall