mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-11 05:36:12 +00:00
30 lines
527 B
Makefile
30 lines
527 B
Makefile
# $URL$
|
|
# $Id$
|
|
|
|
MODULE := devtools
|
|
|
|
MODULE_DIRS += \
|
|
devtools/
|
|
|
|
#######################################################################
|
|
# Tools directory
|
|
#######################################################################
|
|
|
|
DEVTOOLS :=
|
|
|
|
include $(srcdir)/devtools/*/module.mk
|
|
|
|
.PHONY: $(srcdir)/devtools/*/module.mk
|
|
|
|
# Make sure the 'all' / 'clean' targets build/clean the devtools, too
|
|
#all:
|
|
clean: clean-devtools
|
|
|
|
# Main target
|
|
devtools: $(DEVTOOLS)
|
|
|
|
clean-devtools:
|
|
-$(RM) $(DEVTOOLS)
|
|
|
|
.PHONY: clean-devtools devtools
|