Makefile: set default target ("all")

Fixes compilation on Darwin, see:
https://github.com/PurpleI2P/i2pd/pull/1698#issuecomment-946304938
This commit is contained in:
xanoni
2021-10-18 22:10:17 -04:00
parent 278fd2d8d5
commit efd84a2404

View File

@@ -1,3 +1,5 @@
.DEFAULT_GOAL := all
SYS := $(shell $(CXX) -dumpmachine)
ifneq (, $(findstring darwin, $(SYS)))