* Add new note_edit() and note_view() helper functions. Use these instead of copy-pasted code in *_note_edit(). * Move all note-related functions (note_edit(), note_view(), note_erase()) to a new source file "note.c". Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
40 lines
488 B
Makefile
40 lines
488 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
bin_PROGRAMS = calcurse
|
|
|
|
calcurse_SOURCES = \
|
|
calcurse.c \
|
|
calcurse.h \
|
|
htable.h \
|
|
llist.h \
|
|
llist_ts.h \
|
|
apoint.c \
|
|
args.c \
|
|
calendar.c \
|
|
custom.c \
|
|
day.c \
|
|
event.c \
|
|
getstring.c \
|
|
help.c \
|
|
io.c \
|
|
keys.c \
|
|
llist.c \
|
|
note.c \
|
|
notify.c \
|
|
recur.c \
|
|
sigs.c \
|
|
todo.c \
|
|
utf8.c \
|
|
utils.c \
|
|
vars.c \
|
|
wins.c \
|
|
mem.c \
|
|
dmon.c
|
|
|
|
LDADD = @LTLIBINTL@
|
|
|
|
datadir = @datadir@
|
|
localedir = $(datadir)/locale
|
|
|
|
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
|