X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2FMakefile.in;h=edcc4ab78c6eb416ce9a2cdb66f78641744e4cee;hb=7c576fcada992ef799700d2fd1a7753f40f1bb7a;hp=9d145ece31a24740ec4143ead28d66ebc6e52052;hpb=6481e12595de1b95cf9f75ddad2ae9e7c27fd150;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/Makefile.in b/test/Makefile.in index 9d145ece3..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,9 @@ all: binaries sysbinaries binaries: $(BINARIES) -sysbinaries: FRC - bin/locate.sh initdb postgres +sysbinaries: FORCE binaries + bin/locate initdb postgres pg_ctl mysqld + ls -la bin.sys # Compile and link the programs: # @@ -80,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