nnn/Makefile

10 lines
102 B
Makefile

#CPPFLAGS += -DDEBUG
#CFLAGS += -g
LDLIBS = -lncursesw
BIN = noice
all: $(BIN)
clean:
rm -f $(BIN)