
The architecture is explained in dir.h. The reasons for these changes is two-fold: - calc.c was too complex, it simply did too many things. 399ccdeb is a nice example of that: Should have been an easy fix, but it introduced a segfault (fixed in 0b49021a), and added a small memory leak. - This architecture features a pluggable input/output system, which should make a file export/import feature relatively simple. The current commit does not feature any user interface, so there's no feedback yet when scanning a directory. I'll get to that in a bit. I've also not tested the new scanning code very well yet, so I might have introduced some bugs.
37 строки
674 B
Makefile
37 строки
674 B
Makefile
bin_PROGRAMS=ncdu
|
|
|
|
ncdu_SOURCES=\
|
|
src/browser.c\
|
|
src/delete.c\
|
|
src/dirlist.c\
|
|
src/dir_common.c\
|
|
src/dir_mem.c\
|
|
src/dir_scan.c\
|
|
src/exclude.c\
|
|
src/help.c\
|
|
src/main.c\
|
|
src/path.c\
|
|
src/util.c
|
|
|
|
noinst_HEADERS=\
|
|
src/browser.h\
|
|
src/delete.h\
|
|
src/dir.h\
|
|
src/dirlist.h\
|
|
src/exclude.h\
|
|
src/global.h\
|
|
src/help.h\
|
|
src/khash.h\
|
|
src/path.h\
|
|
src/util.h
|
|
|
|
|
|
man_MANS=ncdu.1
|
|
EXTRA_DIST=ncdu.1 doc/ncdu.pod
|
|
|
|
# Don't "clean" ncdu.1, it should be in the tarball so that pod2man isn't a
|
|
# build dependency for those who use the tarball.
|
|
ncdu.1: $(srcdir)/doc/ncdu.pod Makefile
|
|
pod2man --center "ncdu manual" --release "@PACKAGE@-@VERSION@" "$(srcdir)/doc/ncdu.pod" >ncdu.1
|
|
|