From 2e95100bf4e4cd761b8130c81b099768e4955391 Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 29 Mar 2021 23:32:43 -0400 Subject: [PATCH] make configdir an alias for src/I2P/config so we don't call it all the time. Only a convenience target to update the config files in the experimental branch for now. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7e9de30..c6d878c 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,8 @@ build/I2P: build rm -rf build/I2P cp -rv I2P build/I2P ; true +configdir: src/I2P/config + src/I2P/config: rm -rf src/I2P/config/geoip src/I2P/config/webapps src/I2P/config/certificates echo true | tee src/I2P/config/jpackaged ; true @@ -28,7 +30,7 @@ src/I2P/config: cp -R "$(PKG_DIR)"/webapps src/I2P/config/webapps ; true cd src/I2P/config/geoip && gunzip GeoLite2-Country.mmdb.gz; cd ../../.. ; true -build/I2P/config: build/I2P src/I2P/config +build/I2P/config: build/I2P cp -rv src/I2P/config build/I2P/config ; true #