aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1a86f435aeef1b5635cafbb58acb14ec1f51fe40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS:=-Wall -Wextra -pedantic -Werror=format-security -fstack-protector-all $(CFLAGS)

all: nmm

nmm: nmm.c
	$(CC) $(CFLAGS) -lcurses -o $@ $<

clean:
	rm nmm

.PHONY: clean nmm