From 5dc443fc3d236fc2520df58495e62f197a98a64f Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 16 Dec 2011 23:05:46 +0100 Subject: Break out different import/export formats Extract iCal and pcal import/export routines into separate files. This reduces complexity of the super huge "io.c" source file and makes it easier to follow changes that affect the iCal and pcal routines only (commits affecting both formats are very uncommon). Before: $ wc -l src/io.c 2938 src/io.c After: $ wc -l src/{io,ical,pcal}.c 1445 src/io.c 1263 src/ical.c 317 src/pcal.c 3025 total Signed-off-by: Lukas Fleischer --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 5942b89..f6be9e8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,11 +18,13 @@ calcurse_SOURCES = \ event.c \ getstring.c \ help.c \ + ical.c \ io.c \ keys.c \ llist.c \ note.c \ notify.c \ + pcal.c \ recur.c \ sha1.c \ sigs.c \ -- cgit v1.2.3-54-g00ecf