On 26 Apr, henry wrote:
>  #!/bin/sh -x 
>  depend : 
>  <tab> make depend 

Doesn't look like a makefile, that looks liek a cross between a
makefile and a shell script.

E.g. a shell script called depend that just ran make depend:

    #!/bin/sh
    make depend
    
A Makefile with a depend target:

    depend: thing.depend
        mkdep *.c > thing.depend
    
    -include(thing.depend)
     
luke

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to