problem with silent include and special target .DEFAULT

2003-02-03 Thread Helmut Dipper
Hello, make version 3.78.1 (sparc-sun-solaris2.7) and 3.79.1 (mips-sgi-irix6.2) and 3.79.1 (i686-pc-cygwin) Consider the makefile: #-- -include aaa sinclude bbb .DEFAULT: @echo target: $@

problem with silent include and special target .DEFAULT

2003-02-03 Thread Helmut Dipper
Hello, make version 3.78.1 (sparc-sun-solaris2.7) and 3.79.1 (mips-sgi-irix6.2) and 3.79.1 (i686-pc-cygwin) Consider the makefile: #-- -include aaa sinclude bbb .DEFAULT: @echo target: $@

Re: problem with silent include and special target .DEFAULT

2003-02-03 Thread Paul D. Smith
%% Helmut Dipper [EMAIL PROTECTED] writes: hd -include aaa hd sinclude bbb hd .DEFAULT: hd @echo target: $@ hd #-- hd and the results: hd target: bbb hd target: aaa hd gmake: *** No targets. Stop. hd How can it be avoided