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

CFLAGS = -Wunused-variable -Wunused-function -Wconversion

all: glob

clean:
	rm -f glob

glob: glob.c

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

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