diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index ae4801b..d560613 100644 --- a/src/Makefile +++ b/src/Makefile @@ -79,6 +79,14 @@ auto_qmail.o: \ compile auto_qmail.c ./compile auto_qmail.c +auto_queue.c: \ +auto-str ../conf-home + ./auto-str auto_queue `head -1 ../conf-home` > auto_queue.c + +auto_queue.o: \ +compile auto_queue.c + ./compile auto_queue.c + auto_spawn.c: \ auto-int ../conf-spawn ./auto-int auto_spawn `head -1 ../conf-spawn` > auto_spawn.c @@ -601,8 +609,8 @@ qmail-getpw qmail-newu qmail-pw2u qmail-newmrh ldap.lib: \ tryldap.c compile load ( ( ./compile tryldap.c && \ - ./load tryldap `head -2 ../conf-ldap | tail -1` ) >/dev/null 2>&1 \ - && echo "`head -2 ../conf-ldap | tail -1` -lldap" || exit 0 ) > ldap.lib + ./load tryldap -L`head -1 ../conf-ldap` -lldap ) >/dev/null 2>&1 \ + && echo "-L`head -1 ../conf-ldap` -lldap" || exit 0 ) > ldap.lib # rm -f tryldap.o tryldap load: \ @@ -1057,9 +1065,9 @@ compile qmail-queue.c qmail-qmaint: \ load qmail-qmaint.o auto_qmail.o auto_split.o auto_uids.o fifo.o \ -fmtqfn.o readsubdir.o qlibs.lib +fmtqfn.o readsubdir.o date822fmt.o datetime.a qlibs.lib ./load qmail-qmaint auto_qmail.o auto_split.o auto_uids.o fifo.o \ - fmtqfn.o readsubdir.o `cat qlibs.lib` + fmtqfn.o readsubdir.o date822fmt.o datetime.a `cat qlibs.lib` qmail-qmaint.o: \ compile qmail-qmaint.c |