aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: 70c522fc21694563b4bcf4ba2f93b7e0d2a07928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC		= cc -Wall -Wextra
INST_PATH	= /usr/local/bin

baps1: main.o
	$(CC) -o baps1 main.o -lm

main.o: main.c
	$(CC) -c main.c

install: baps1
	install baps1 $(INST_PATH)/baps1

uninstall:
	rm $(INST_PATH)/baps1

clean:
	rm baps1 *.o