mii_emu/libmui/tests/Makefile
Michel Pollet 11cdb8b209 Version 1.9: See Changelog for details
List is too long...

Signed-off-by: Michel Pollet <buserror@gmail.com>
2024-05-13 16:40:51 +01:00

20 lines
340 B
Makefile

# Makefile
#
# Copyright (C) 2024 Michel Pollet <buserror@gmail.com>
#
# SPDX-License-Identifier: MIT
# Check to see if we are a submodule of the MII emulator
MII_PLUG := ${wildcard ../../ui_gl/*.c}
ifneq ($(MII_PLUG),)
PLUGS += mii_ui
endif
PLUGS += mui_widgets_demo
all :
for plug in $(PLUGS); do \
$(MAKE) -C $$plug; \
done