Chen Xiao Fan wrote: > Following the document by Jan-Erik Soderholm, I managed > to create my first Makefile for the EasyISP. It works but > I still have one question. I always see the following > prompt. What is wrong? > > rm prg_sert.asm prg_s22.asm prg_cmd.asm prg_16f.asm > prg_intr.asm prg_main.asm prg_strt.asm prg_s08.asm > prg_core12.asm prg_led.asm prg_s16.asm prg_op.asm > prg_18f.asm prg_vpp.asm prg_port.asm prg_vdd.asm > prg_uart.asm It's a feature(?) of some "make"s, particularly Gnu make. It actually keeps track of files that get created during a particular make run and, assuming that they are temporaries, it helpfully deletes them as the last step before exiting. If you want to keep them around, make them explicitly once, then when you make the whole project, they'll already be there and even if the make updates them, they won't get deleted. -- Dave Tweed -- http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist