futriix/Makefile
Artem Danilov 7e057b5856 enable TLS build by default (#43)
* enable TLS build by default

* move export to src folder

* fix comments
2022-02-11 16:36:42 -08:00

12 lines
211 B
Makefile

# Top level makefile, this just calls into src/Makefile where the real work is done. Changes should be made there.
default: all
.DEFAULT:
cd src && $(MAKE) $@
install:
cd src && $(MAKE) $@
.PHONY: install