mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2025-04-18 17:44:18 +03:00
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1944 4407c894-4637-0410-b4f5-ada5f102cad1
25 lines
527 B
Makefile
25 lines
527 B
Makefile
if HEADER
|
|
MAYBE_HEADER = mingw-w64-headers
|
|
endif
|
|
|
|
if CRT
|
|
MAYBE_CRT = mingw-w64-crt
|
|
endif
|
|
|
|
if LIBRARIES_MANGLE
|
|
MAYBE_LIBRARIES_MANGLE = mingw-w64-libraries/libmangle
|
|
endif
|
|
|
|
if LIBRARIES_PSEH
|
|
MAYBE_LIBRARIES_PSEH = mingw-w64-libraries/pseh
|
|
endif
|
|
|
|
if TOOLS_GENDEF
|
|
MAYBE_TOOLS_GENDEF = mingw-w64-tools/gendef
|
|
endif
|
|
|
|
SUBDIRS = $(MAYBE_HEADER) $(MAYBE_CRT) $(MAYBE_LIBRARIES_MANGLE) $(MAYBE_LIBRARIES_PSEH) $(MAYBE_TOOLS_GENDEF)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --with-headers --with-crt --with-libraries=all --with-tools=all
|
|
|