summaryrefslogtreecommitdiff
path: root/Makefile
blob: 91b5d34d391d6c6ae8d23b9363752bd9149c31b6 (plain)
1
2
3
4
5
6
7
8
9
CC     = gcc
PROGS  = tml

all: $(PROGS)

clean:; $(RM) $(PROGS) *.o core

tml:		draw.o read_cfg.o entry.o group.o
		$(CC) -o tml draw.o read_cfg.o entry.o group.o -lncurses