X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/3f78365471d68728e6607ad49aaa6299f69c6f86..0c2250d167e858666f6ab372fe34dbd9e682932d:/test/Makefile.in diff --git a/test/Makefile.in b/test/Makefile.in index 546766e41..edcc4ab78 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -18,7 +18,7 @@ SRC = @srcdir@/src BINARIES = bin/cf bin/client $(CLIENT_SSL) $(CLIENT_GNUTLS) \ bin/checkaccess bin/fakens bin/fd bin/iefbr14 $(LOADED) \ - bin/mtpscript bin/server bin/showids + bin/mtpscript bin/server bin/showids bin/locate # List of targets @@ -26,8 +26,8 @@ all: binaries sysbinaries binaries: $(BINARIES) -sysbinaries: FRC - bin/locate.sh initdb postgres pg_ctl +sysbinaries: FORCE binaries + bin/locate initdb postgres pg_ctl mysqld ls -la bin.sys # Compile and link the programs: @@ -81,8 +81,12 @@ bin/server: $(SRC)/server.c Makefile bin/showids: $(SRC)/showids.c Makefile $(CC) $(CFLAGS) $(LDFLAGS) -o bin/showids $(SRC)/showids.c +bin/locate: $(SRC)/locate.sh Makefile + cp $(SRC)/locate.pl bin/locate + chmod 0755 bin/locate + clean:; rm -rf $(BINARIES) bin.sys -FRC: +FORCE: # End