summaryrefslogtreecommitdiff
path: root/Makefile
blob: 51e5183eb69822f9bb696386d84bea3431f01c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.POSIX:

all: bs

OBJS=bs.o
LIBS=-lcurses

CC=c99
CFLAGS=-Wall -Wextra -Wpedantic

bs: $(OBJS)
	$(CC) -o $@ $(OBJS) $(LIBS)

clean:
	rm -f bs *.o