Hash :
f8bf6e2b
Author :
Date :
1999-12-29T00:19:37
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
#
# This file is used to detect which Makefile to use based on the
# value of the CC environment variable.
#
# Unix
#
#
# This will _much_ probably change in the future if we're going to use
# Automake/Autoconf..
#
ifeq ($(PLATFORM),ansi)
has_inittab := $(strip $(wildcard /etc/inittab))
ifneq ($(has_inittab),)
PLATFORM := unix
COPY := cp
DELETE := rm -f
# if `devel' is the requested target, use the development Makefile
#
ifneq ($(findstring devel,$(MAKECMDGOALS)),)
CONFIG_RULES := $(BUILD)$(SEP)Makefile.devel
devel: ;
else
CONFIG_RULES := $(BUILD)$(SEP)Makefile
endif
setup: std_setup
endif # test Unix
endif # test PLATFORM