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

CFLAGS = -O3 -static -s

all: argv

argv: argv.c

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

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

clean:
	rm -f argv

.PHONY: all clean install uninstall