Help for this page

Select Code to Download


  1. or download this
    ifeq "{xxx}" "xxx"
    MAKE_USED = dmake
    ...
    #if... How can nmake be identified?
    #MAKE_USED = nmake
    #endif
    
  2. or download this
    NORL =@# No Output of Recipe Line
    .PHONY: check_used_make_program
    ...
    ifeq "$(MAKE_USED)" "gnumake"
        $(NORL)$(error ERROR: Using $(MAKE_USED) for a Makefile intended f
    +or ?make)
    endif
    
  3. or download this
    ifeq "$(MAKE_USED)" "dmake"
    #               The message is NOT sent to STDERR
        $(NORL)echo ERROR: Using $(MAKE_USED) for a Makefile intended for 
    +?make
        $(assign ERR OR = ERROR) #Generates an error message
    endif