aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-20 15:09:51 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-20 15:09:51 -0700
commitcd4a8734d3bb151df70d51a84903bff994439b05 (patch)
treeb396e65c412bde4dda0ad48e1c70e2ba9c94744d /Makefile
parent00af443b8e5814f26c87c7cd8db1a08fec71e0b3 (diff)
Rename private notmuch_message_t to notmuch_message_file_t
This is in preparation for a new, public notmuch_message_t. Eventually, the public notmuch_message_t is going to grow enough features to need to be file-backed and will likely need everything that's now in message-file.c. So we may fold these back into one object/implementation in the future.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 86516402..34716c29 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ all: $(PROGS)
%.o: %.c
$(CC) -c $(CFLAGS) $(MYCFLAGS) $< -o $@
-notmuch: notmuch.o database.o date.o message.o xutil.o
+notmuch: notmuch.o database.o date.o message-file.o xutil.o
$(CC) $(MYLDFLAGS) $^ -o $@
Makefile.dep: *.c *.cc