trunk/src/mame/mame.mak
| r23703 | r23704 | |
| 13 | 13 | # In order to keep dependencies reasonable, we exclude objects in the base of |
| 14 | 14 | # $(SRC)/emu, as well as all the OSD objects and anything in the $(OBJ) tree |
| 15 | 15 | depend: maketree $(MAKEDEP_TARGET) |
| 16 | @echo Rebuilding depend_emu.mak... |
| 17 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/emu > depend_emu.mak |
| 16 | 18 | @echo Rebuilding depend_$(TARGET).mak... |
| 17 | | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... src/$(TARGET) > depend_$(TARGET).mak |
| 19 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/$(TARGET) > depend_$(TARGET).mak |
| 18 | 20 | endif |
| 19 | 21 | |
| 20 | 22 | MAMESRC = $(SRC)/mame |
trunk/src/ume/ume.mak
| r23703 | r23704 | |
| 24 | 24 | |
| 25 | 25 | depend: maketree $(MAKEDEP_TARGET) |
| 26 | 26 | @echo Rebuilding depend_$(TARGET).mak... |
| 27 | | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... src/mame > depend_mame.mak |
| 28 | | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... src/mess > depend_mess.mak |
| 29 | | @echo -include depend_mame.mak > depend_ume.mak |
| 27 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/emu > depend_emu.mak |
| 28 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/mame > depend_mame.mak |
| 29 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/mess > depend_mess.mak |
| 30 | |
| 31 | @echo -include depend_emu.mak > depend_ume.mak |
| 32 | @echo -include depend_mame.mak >> depend_ume.mak |
| 30 | 33 | @echo -include depend_mess.mak >> depend_ume.mak |
trunk/src/mess/mess.mak
| r23703 | r23704 | |
| 10 | 10 | # In order to keep dependencies reasonable, we exclude objects in the base of |
| 11 | 11 | # $(SRC)/emu, as well as all the OSD objects and anything in the $(OBJ) tree |
| 12 | 12 | depend: maketree $(MAKEDEP_TARGET) |
| 13 | @echo Rebuilding depend_emu.mak... |
| 14 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/emu > depend_emu.mak |
| 13 | 15 | @echo Rebuilding depend_$(TARGET).mak... |
| 14 | | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... src/$(TARGET) > depend_$(TARGET).mak |
| 16 | $(MAKEDEP) -I. $(INCPATH) -X$(SRC)/emu -X$(SRC)/osd/... -X$(OBJ)/... $(SRC)/$(TARGET) > depend_$(TARGET).mak |
| 15 | 17 | endif |
| 16 | 18 | |
| 17 | 19 | # include MESS core defines |