Please look into the following simple makefile:
#Start of Simple Makefile
B: D #some commands for target B .........
A: B C #some commands for target A
.PHONY: clean
clean: #some commads to remove A and B
#End of Simple Makefile
When I try the above makefile with make command, only target B is obtained but not target A. I know that I would get target A when A: B C is put before B: D statement. But I would like to get target A maintaining the same order as shown above. How to get this?
Thanks
--Kris
_________________________________________________________________
Dress up your desktop! Get the best wallpapers. http://server1.msn.co.in/msnchannels/Entertainment/wallpaperhome.asp Just click here!
_______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
