about summary refs log tree commit diff
path: root/Makefile
blob: 528c21aea58609a57fe46e75b28627a856b1bbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
RM ?= rm -f
PREFIX ?= /usr/local/
BINDIR ?= ${PREFIX}/bin

CC = cc -ansi -fno-builtin

.PHONY: all
all: buc bus

install: all
	install -d ${BINDIR}
	install -m755 buc bus ${BINDIR}

uninstall:
	${RM} ${BINDIR}/buc ${BINDIR}/bus

.PHONY: clean
clean:
	${RM} buc bus