repo.or.cz
/
ttodo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Implemented load/save
[ttodo.git]
/
Makefile
blob
4ea65167bbd549673f58b16eeba5c6316f09cde5
1
include
Config.mk
2
3
EXE
=
todo
4
SRCS
= $(
wildcard
*
.
cc
)
5
OBJS
= $(
SRCS
:
.
cc
=
.o
)
6
LIBS
= -
lutio
-
lustl
7
8
ifdef
STANDALONE
9
LIBS
+= -
lsupc
++ -
lgcc_s
-
lc
10
endif
11
12
include
Comrubin.mk
13