1
0
mirror of https://github.com/mariadb-corporation/libmarias3.git synced 2025-04-18 16:24:01 +03:00
libmarias3/GNUmakefile
2019-03-22 08:00:38 +00:00

37 lines
664 B
Makefile

# vim:ft=make
#
_bootstrap_Makefile := $(wildcard [M]akefile)
_bootstrap_config-status := $(wildcard config.status)
ALL_RECURSIVE_TARGETS=
ifneq ($(_bootstrap_Makefile),)
include Makefile
else
ifneq ($(_bt_config-status),)
$(srcdir)/config.status
$(MAKE) $(AM_MAKEFLAGS) configure
endif
.DEFAULT_GOAL:= basic_build
srcdir= .
configure:
@autoreconf -fi
Makefile: configure
@$(srcdir)/configure
.PHONY: basic_build
basic_build: Makefile
@$(MAKE) $(AM_MAKEFLAGS)
endif
ALL_RECURSIVE_TARGETS+= $(AM_RECURSIVE_TARGETS)
ifneq ($(word 2, $(MAKECMDGOALS)), )
ifneq ($(filter $(ALL_RECURSIVE_TARGETS), $(MAKECMDGOALS)), )
.NOTPARALLEL:
endif
endif