header.o help.o history.o hook.o init.o keymap.o main.o \
mbox.o menu.o mh.o muttlib.o mutt_address.o \
mutt_socket.o tags.o mx.o \
- newsrc.o nntp.o pager.o parameter.o parse.o pattern.o pop.o \
+ newsrc.o nntp.o pager.o parse.o pattern.o pop.o \
pop_auth.o pop_lib.o postpone.o query.o recvattach.o recvcmd.o \
rfc1524.o rfc2047.o rfc2231.o rfc3676.o address.o \
safe_asprintf.o score.o send.o sendlib.o sidebar.o mutt_signal.o \
###############################################################################
# libmutt
LIBMUTT= libmutt.a
-LIBMUTTOBJS= mutt/base64.o mutt/buffer.o mutt/charset.o mutt/date.o mutt/debug.o mutt/exit.o \
- mutt/file.o mutt/hash.o mutt/idna.o mutt/list.o mutt/mapping.o mutt/mbyte.o mutt/md5.o \
- mutt/memory.o mutt/message.o mutt/mime.o mutt/regex.o mutt/sha1.o mutt/signal.o mutt/string.o \
+LIBMUTTOBJS= mutt/base64.o mutt/buffer.o mutt/charset.o mutt/date.o \
+ mutt/debug.o mutt/exit.o \
+ mutt/file.o mutt/hash.o mutt/idna.o mutt/list.o \
+ mutt/mapping.o mutt/mbyte.o mutt/md5.o \
+ mutt/memory.o mutt/message.o mutt/mime.o mutt/parameter.o \
+ mutt/regex.o mutt/sha1.o mutt/signal.o mutt/string.o \
mutt/rfc2047.o
CLEANFILES+= $(LIBMUTT) $(LIBMUTTOBJS)
MUTTLIBS+= $(LIBMUTT)
hcache/hcversion.h: $(SRCDIR)/mutt.h $(SRCDIR)/address.h \
$(SRCDIR)/mutt/list.h $(SRCDIR)/mutt/buffer.h \
- $(SRCDIR)/parameter.h $(SRCDIR)/body.h \
+ $(SRCDIR)/mutt/parameter.h $(SRCDIR)/body.h \
$(SRCDIR)/envelope.h $(SRCDIR)/header.h \
$(SRCDIR)/hcache/hcachever.sh \
$(PWD)/hcache
( echo '#include "config.h"'; echo '#include "mutt.h"'; \
echo '#include "address.h"'; echo '#include "mutt/list.h"'; \
- echo '#include "mutt/buffer.h"'; echo '#include "parameter.h"'; \
+ echo '#include "mutt/buffer.h"'; echo '#include "mutt/parameter.h"'; \
echo '#include "body.h"'; echo '#include "envelope.h"'; \
echo '#include "header.h"';) | $(CPP) $(CFLAGS) - | \
sh $(SRCDIR)/hcache/hcachever.sh hcache/hcversion.h
*
* Each source file in the library provides a group of related functions.
*
- * | File | Description |
- * | :------------- | :--------------- |
- * | mutt/base64.c | @subpage base64 |
- * | mutt/buffer.c | @subpage buffer |
- * | mutt/charset.c | @subpage charset |
- * | mutt/date.c | @subpage date |
- * | mutt/debug.c | @subpage debug |
- * | mutt/exit.c | @subpage exit |
- * | mutt/file.c | @subpage file |
- * | mutt/hash.c | @subpage hash |
- * | mutt/idna.c | @subpage idna |
- * | mutt/list.c | @subpage list |
- * | mutt/mapping.c | @subpage mapping |
- * | mutt/mbyte.c | @subpage mbyte |
- * | mutt/md5.c | @subpage md5 |
- * | mutt/memory.c | @subpage memory |
- * | mutt/message.c | @subpage message |
- * | mutt/mime.c | @subpage mime |
- * | mutt/regex.c | @subpage regex |
- * | mutt/rfc2047.c | @subpage rfc2047 |
- * | mutt/sha1.c | @subpage sha1 |
- * | mutt/signal.c | @subpage signal |
- * | mutt/string.c | @subpage string |
+ * | File | Description |
+ * | :--------------- | :----------------- |
+ * | mutt/base64.c | @subpage base64 |
+ * | mutt/buffer.c | @subpage buffer |
+ * | mutt/charset.c | @subpage charset |
+ * | mutt/date.c | @subpage date |
+ * | mutt/debug.c | @subpage debug |
+ * | mutt/exit.c | @subpage exit |
+ * | mutt/file.c | @subpage file |
+ * | mutt/hash.c | @subpage hash |
+ * | mutt/idna.c | @subpage idna |
+ * | mutt/list.c | @subpage list |
+ * | mutt/mapping.c | @subpage mapping |
+ * | mutt/mbyte.c | @subpage mbyte |
+ * | mutt/md5.c | @subpage md5 |
+ * | mutt/memory.c | @subpage memory |
+ * | mutt/message.c | @subpage message |
+ * | mutt/mime.c | @subpage mime |
+ * | mutt/parameter.c | @subpage parameter |
+ * | mutt/regex.c | @subpage regex |
+ * | mutt/rfc2047.c | @subpage rfc2047 |
+ * | mutt/sha1.c | @subpage sha1 |
+ * | mutt/signal.c | @subpage signal |
+ * | mutt/string.c | @subpage string |
*
* @note The library is self-contained -- some files may depend on others in
* the library, but none depends on source from outside.
#include "memory.h"
#include "message.h"
#include "mime.h"
+#include "parameter.h"
#include "regex3.h"
#include "rfc2047.h"
#include "sha1.h"