|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
don't know how to make clean
I'm trying to apply patches after installing openbsd 3.6. The patches "patch" successfully but when i try to configure the kernel by:
#cd /sys/arch/macppc/conf #config GENERIC Don't forget to run "make depend" #make clean && make depend I get: make: don't know how to make clean. Stop in /sys/arch/macppc/conf. What is happening? |
|
#2
|
|||
|
|||
|
the 'clean' target is not defined in the [Mm]akefile
forget (or define) it. |
|
#3
|
||||
|
||||
|
That's because you aren't in the right directory. If you'd looked at the OpenBSD faqs correctly, you would have noticed what you did wrong. You should change to the ../compile/GENERIC directory before running make clean, make depend and make. That's where the Makefile is written to.
#cd /sys/arch/macppc/conf #config GENERIC Don't forget to run "make depend" #cd ../compile/GENERIC #make clean && make depend Now it should work.
__________________
Up the Irons What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home. "Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest Down with Sharon Osbourne Puzzle of the Month solved by sizeablegrin, etienne141 and L7Sqr, superior C/C++ programmers of the month |
|
#4
|
|||
|
|||
|
yeah that's right... couldn't imagine there not being a 'clean' defined. Good one!
-Steven |
![]() |
| Viewing: Dev Shed Forums > Operating Systems > BSD Help > don't know how to make clean |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|