X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2FMakefile.in;h=fc480e22ef597c83d7f53d81cb3296c33c85bd6c;hb=43a89745e7dd300cc0f0abe9239126de5edea8e3;hp=ccbf0d2acb2a4302434b9b54e9c08cdc452e2be4;hpb=82adc0fcf4da8e91ec4ff11f1a0f9d96449f85ad;p=citadel.git diff --git a/citadel/Makefile.in b/citadel/Makefile.in index ccbf0d2ac..fc480e22e 100644 --- a/citadel/Makefile.in +++ b/citadel/Makefile.in @@ -36,7 +36,7 @@ include Make_modules UTIL_TARGETS=citmail$(EXEEXT) sendcommand$(EXEEXT) -UTILBIN_TARGETS= base64$(EXEEXT) setup$(EXEEXT) \ +UTILBIN_TARGETS= setup$(EXEEXT) \ chkpw$(EXEEXT) chkpwd$(EXEEXT) \ msgform$(EXEEXT) \ ctdlmigrate$(EXEEXT) @@ -73,11 +73,11 @@ LOCALEDIR=@LOCALEDIR@ SOURCES=utils/citmail.c \ utils/setup.c utils/msgform.c utils/chkpw.c \ utils/sendcommand.c \ - utils/ctdlmigrate.c utils/base64.c utils/chkpwd.c \ + utils/ctdlmigrate.c utils/chkpwd.c \ utillib/citadel_dirs.c \ citserver.c clientsocket.c config.c control.c $(DATABASE) \ domain.c serv_extensions.c genstamp.c \ - housekeeping.c ical_dezonify.c internet_addressing.c ecrash.c \ + housekeeping.c default_timezone.c internet_addressing.c \ locate_host.c auth.c msgbase.c parsedate.c \ room_ops.c euidindex.c server_main.c ldap.c \ support.c sysdep.c user_ops.c journaling.c threads.c \ @@ -132,9 +132,9 @@ SERV_OBJS = server_main.o utillib/citadel_dirs.o \ $(DATABASE:.c=.o) domain.o \ control.o config.o support.o room_ops.o \ msgbase.o euidindex.o \ - locate_host.o housekeeping.o ical_dezonify.o \ + locate_host.o housekeeping.o default_timezone.o \ internet_addressing.o journaling.o \ - parsedate.o genstamp.o ecrash.o threads.o context.o \ + parsedate.o genstamp.o threads.o context.o \ clientsocket.o modules_init.o modules_upgrade.o $(SERV_MODULES) \ svn_revision.o ldap.o netconfig.o md5.o @@ -169,9 +169,6 @@ sendcommand$(EXEEXT): utils/sendcommand.o utillib/citadel_dirs.o $(LIBOBJS) $(CC) utils/sendcommand.o utillib/citadel_dirs.o \ $(LIBOBJS) $(LDFLAGS) -o sendcommand$(EXEEXT) $(LIBS) -base64$(EXEEXT): utils/base64.o - $(CC) utils/base64.o $(LDFLAGS) -o base64$(EXEEXT) - msgform$(EXEEXT): utils/msgform.o $(CC) utils/msgform.o $(LDFLAGS) -o msgform$(EXEEXT)