Implemented load/save
[ttodo.git] / Makefile
blob4ea65167bbd549673f58b16eeba5c6316f09cde5
1 include Config.mk
3 EXE = todo
4 SRCS = $(wildcard *.cc)
5 OBJS = $(SRCS:.cc=.o)
6 LIBS = -lutio -lustl
8 ifdef STANDALONE
9 LIBS += -lsupc++ -lgcc_s -lc
10 endif
12 include Comrubin.mk