Hi Geraldin, Replying to the list this time.
$(OBJS):$(OUTPUT_DIR)/%.o: %.cxx
The .P files under $(OUTPUT_DIR)/ directory have info like this. COvBucket.o: /home/geraldin/vobs/pdf_src/pdfoverload/COvBucket.h
What do see different about the rule to build the object file and the name of the object file in your .P file? Paul already mentioned this in a previous email. Your .o file dependencies are missing the $(OUTPUT_DIR). You should have had: $(OUTPUT_DIR)/COvBucket.o: /home/geraldin/vobs/pdf_src/pdfoverload/COvBucket.h Your sed script doesn't appear to be doing the right thing. -- Dave Hylands Vancouver, BC, Canada http://www.DaveHylands.com/ _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
