libevl/Makefile

15 lines
294 B
Makefile
Raw Permalink Normal View History

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