mirror of
https://github.com/buserror/mii_emu.git
synced 2024-11-29 02:49:59 +00:00
11cdb8b209
List is too long... Signed-off-by: Michel Pollet <buserror@gmail.com>
20 lines
340 B
Makefile
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
|
|
|