libevl/Makefile

15 lines
286 B
Makefile

# SPDX-License-Identifier: MIT
include config.mk
TARGETS := include lib benchmarks utils eshi tests
$(MAIN_GOALS): output-Makefile
@for target in $(TARGETS); do \
$(MAKE) -C $$target O=$(O_DIR)/$$target V=$(V) $@ || exit 1; \
done
lib: include
tests benchmarks utils: lib