mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 02:10:17 +01:00
25 lines
527 B
Makefile
25 lines
527 B
Makefile
|
MOD_DEPTH = ..
|
||
|
topsrcdir = @top_srcdir@
|
||
|
srcdir = @srcdir@
|
||
|
|
||
|
include $(MOD_DEPTH)/config/autoconf.mk
|
||
|
|
||
|
SRCDIRS = build include libraries
|
||
|
ifeq ($(BUILDCLU), 1)
|
||
|
SRCDIRS += clients/tools
|
||
|
endif
|
||
|
|
||
|
DIRS = $(SRCDIRS)
|
||
|
|
||
|
include $(topsrcdir)/config/rules.mk
|
||
|
|
||
|
# dummy target to allow platforms without a compiler-based depend (like GCC
|
||
|
# has) to call "make depend" here and not fail, at the cost of actual
|
||
|
# dependencies on such builds possibly being incorrect. A nasty hack, but
|
||
|
# this build system is going away soon.
|
||
|
#
|
||
|
depend:
|
||
|
|
||
|
FORCE:
|
||
|
|