RE: Makefile tricks

2002-03-20 Thread Simon Marlow
> (RedHat-6.1 Linux machine, libc-2.1.2), > > Can you, please explain the following effect > >Main.hs: main = putStr "hello\n" > >Makefile: >- >obj: > ghc -c -O Main.hs +RTS -M10m -RTS > >-- Running >$ tcsh >> make obj >

Makefile tricks

2002-03-20 Thread S.D.Mechveliani
Dear ghc-5.02.2-i386-unknown-linux, (RedHat-6.1 Linux machine, libc-2.1.2), Can you, please explain the following effect Main.hs: main = putStr "hello\n" Makefile: - obj: ghc -c -O Main.hs +RTS -M10m -RTS -- Running $ tcsh > mak