1 2 OSF's 'make' has problems with the Makefiles constructed by MakeMaker 3 before MakeMaker-4.18 4 5 make 6 just says: 7 `Makefile' is up to date. 8 9 Using GNU make solves this. 10 11 Otherwise type: 12 13 make all 14 15 and do 'install' by hand: 16 17 make all 18 19 perl ./basic_demo 20 21 cp -r blib /usr/local/lib/perl5 22 23 Note that the cp -r does *not* do quite the same as a make install, 24 in particular the binaries are not separated from the scripts. 25 26 On Alpha if you get something like: 27 28 GC already registered in Tk_GetGC 29 Tcl_Panic at ... 30 31 Then it has been reported that reducing optimize from -O4 to -O3 32 fixes the problem. 33 34 35