blob: e2f2d1aebdba9e76eac1b14070681894e56f265f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
gnumake = yes
ifeq ($(filter Makefile,$(MAKEFILE_LIST)),)
include Makefile
GNUmakefile: $(srcdir)/template/GNUmakefile.in
endif
override silence := $(if $(findstring s,$(firstword $(MFLAGS))),yes,no)
ifeq ($(HAVE_BASERUBY),yes)
override REVISION_FORCE := PHONY
endif
include $(srcdir)/defs/universal.mk
-include uncommon.mk
include $(srcdir)/defs/gmake.mk
|