Greetings,
Our establishment has moved up to GNU Make 3.81.
We notice a problem with the Make processor.
The following Make command does not work any more when using Make 3.81

$(CMDS): ./src/[email protected] ./inc/[email protected] ./inc/ldi_globals.h 
$(ATE_DIR)/vol3/inc/aci/dmdtStructure.h $(C_OBJS)
        $(CC) ./src/[email protected] -o $@ $(C_L_FLAGS) $(LINK_OBJS)



I had to change the command to the following in order to make it work for me.

$(CMDS): ./src/*.C ./inc/*.h ./inc/ldi_globals.h 
$(ATE_DIR)/vol3/inc/aci/dmdtStructure.h $(C_OBJS)
        $(CC) ./src/[email protected] -o $@ $(C_L_FLAGS) $(LINK_OBJS)


Did the Make processor change to cause it to fail for me?


M. Joel Sánchez
Dept. 66-ZE-HA00
Phone   (425) 266-9470
Fax     (425) 266-9642
Pager
M/C     0X-KC
Office  Bldg. 40-25.3
City      Everett, WA



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to