$ cat Makefile
# Makefile example
all : hello
hello :
python -c 'print "hello"'> hello
$ make
python -c 'print "hello"'> hello
$ cat hello
hello
$
problem : makefile:4: *** missing separator. Stop
solution : need TAB before each "recipe" line.
# Makefile example
all : hello
hello :
python -c 'print "hello"'> hello
$ make
python -c 'print "hello"'> hello
$ cat hello
hello
$
problem : makefile:4: *** missing separator. Stop
solution : need TAB before each "recipe" line.
Comments