libevl/Makefile

15 lines
252 B
Makefile

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