-2. To build and install wxWidgets you could just use the "make"
- command but there are a couple other libraries besides the main
- wxWidgets libs that also need to be built so again I make a script
- to do it all for me so I don't forget anything. This time it is
- called ".make" (I use the leading "." so when I do ``rm -r *`` in
- my build dir I don't lose my scripts too.) This is what it looks
- like::
-
- make $* \
- && make -C contrib/src/stc $*
-
- So you just use .make as if it where make, but don't forget to set
- the execute bit on .make first!::
+2. To build and install wxWidgets you just need to run "make" and
+ "make install" and the Makefile will take care of all the work for you::