automake



I know that this question doesn't really belong to this mailing list, but i don't know where to ask instead....
Can somebody tell me whats wrong with this Makefile.am:

LDADD = -lboost_date_time -lsqlite
AM_CPPFLAGS = $(GTKMM_CFLAGS) -Wall -DNO_DB_QUERY -DONE_BEG_PER_DAY -DNO_LONGER_THAN_HOURS24
################################################################################################
################################################################################################
S_SHARED = shared/timePeriod.hpp shared/timePeriod.cc shared/calendar.hpp shared/calendar.cc \ shared/mem.hpp shared/shiftMemory.hpp shared/copiedPtr.hpp shared/constants.hpp \
          shared/shared.hpp

S_UTILITY = utility/coreUtils.hpp utility/misc.hpp utility/misc.cc \
utility/simpleUtils.hpp utility/simpleUtils.cc utility/extendedUtils.hpp \
           utility/extendedUtils.cc utility/private/coreUtilsPrivate.hpp \
           utility/private/coreUtilsPrivate.cc utility/seriesIter.hpp
S_HELPERFUNCTIONS = helperFunctions/exceptionHelpers.hpp helperFunctions/exceptionHelpers.cc \ helperFunctions/miscFunctions.hpp helperFunctions/miscFunctions.cc \
                   helperFunctions/numericHelpers.hpp

S_TESTUTILS = testUtils/rand.hpp testUtils/rand.cc testUtils/testMain.hpp testUtils/testMain.cc

S_SCHEDULE = schedule/schedule.hpp schedule/schedule.cc

S_LABOURLAW = labourLaw/judgeRules.hpp labourLaw/judgeRules.cc \
             labourLaw/judge.hpp labourLaw/judge.cc \
             labourLaw/overtimeRules.hpp labourLaw/overtimeRules.cc \
             labourLaw/overtimeExpert.hpp labourLaw/overtimeExpert.cc \
             labourLaw/treaty.hpp labourLaw/treaty.cc
S_MANPOWER = manpower/worker.hpp manpower/worker.cc \ manpower/poolLabour.hpp manpower/poolLabour.cc manpower/iRegulator.hpp

S_ORGANIZER = organizer/organizer.hpp organizer/organizer.cc

S_DATASTORAGE = dataStorage/dataStorage.hpp dataStorage/dataStorage.cc \
               dataStorage/parsers.hpp dataStorage/parsers.cc \
               dataStorage/dataWriters.hpp dataStorage/dataWriters.cc
S_HTMLEXPORT = htmlExport/htmlExport.hpp htmlExport/htmlExport.cpp

S_MESSAGEMEM = messageMem/messageMem.hpp messageMem/messageMem.cc
################################################################################################
dir_aw = interface/attributeWindow/
dir_lv = interface/listView/
dir_mv = interface/mainWindow/
dir_mi = interface/misc/
dir_si = interface/shiftTable/

s_aw = $(dir_aw)attributeWindow.hpp $(dir_aw)attributeWindow.cc \
      $(dir_aw)needsWindow.hpp $(dir_aw)needsWindow.cc \
      $(dir_aw)shiftAttributeWindow.hpp $(dir_aw)shiftAttributeWindow.cc \
$(dir_aw)shiftAttributeWindowConnected.hpp $(dir_aw)shiftAttributeWindowConnected.cc \
      $(dir_aw)shiftPrefWindow.hpp $(dir_aw)shiftPrefWindow.cc \
$(dir_aw)treatyAttributeMainWindow.hpp $(dir_aw)treatyAttributeMainWindow.cc \
      $(dir_aw)treatyOvertimeWindow.hpp $(dir_aw)treatyOvertimeWindow.cc \
$(dir_aw)treatyOvertimeWindowConnected.hpp $(dir_aw)treatyOvertimeWindowConnected.cc \
      $(dir_aw)treatyRulesWindow.hpp $(dir_aw)treatyRulesWindow.cc \
$(dir_aw)treatyRulesWindowConnected.hpp $(dir_aw)treatyRulesWindowConnected.cc \
      $(dir_aw)weekdayPrefWindow.hpp $(dir_aw)weekdayPrefWindow.cc \
      $(dir_aw)workerAttributeWindow.hop $(dir_aw)workerAttributeWindow.cc
s_lv = $(dir_lv)baseView.hpp $(dir_lv)baseView.cc \
      $(dir_lv)shiftsView.hpp $(dir_lv)shiftsView.cc \
      $(dir_lv)shiftsViewConnected.hpp $(dir_lv)shiftsViewConnected.cc \
      $(dir_lv)treatiesView.hpp $(dir_lv)treatiesView.cc \
$(dir_lv)treatiesViewConnected.hpp $(dir_lv)treatiesViewConnected.cc \
      $(dir_lv)workersView.hpp $(dir_lv)workersView.cc \
      $(dir_lv)workersViewConnected.hpp $(dir_lv)workersViewConnected.cc
s_mw = $(dir_mw)mainWindow.hpp $(dir_mw)mainWindow.cc

s_mi = $(dir_mi)invalidCharacters.hpp $(dir_mi)invalidCharacters.cc

s_st = $(dir_st)tableField.hpp $(dir_st)tableField.cc \
      $(dir_st)textField.hpp $(dir_st)textField.cc \
      $(dir_st)coloredTextField.hpp $(dir_st)coloredTextField.cc \
      $(dir_st)dateFields.hpp $(dir_st)dateFields.cc \
      $(dir_st)statFields.hpp $(dir_st)statFields.cc \
      $(dir_st)workerScheduleField.hpp $(dir_st)workerScheduleField.cc \
      $(dir_st)poolScheduleField.hpp $(dir_st)poolScheduleField.cc \
      $(dir_st)shiftTable.hpp $(dir_st)shiftTable.cc \
      $(dir_st)shiftTableBox.hpp $(dir_st)shiftTableBox.cc \
      $(dir_st)monthBox.hpp $(dir_st)monthBox.cc
################################################################################################
S_CORE = $(S_SHARED) $(S_SCHEDULE) $(S_UTILITY) $(S_HELPERFUNCTIONS) $(S_LABOURLAW) \
        $(S_MANPOWER) $(S_ORGANIZER) $(S_DATASTORAGE) \
        $(S_HTMLEXPORT) $(S_MESSAGEMEM)
S_INTERFACE = $(s_aw) $(s_lv) $(s_mw) $(dir_mi) $(s_st)
s_main = main.cc
################################################################################################
################################################################################################
bin_PROGRAMS = dpm
dpm_SOURCES = $(S_CORE) $(S_INTERFACE) $(s_main)
dpm_LDADD = $(GTKMM_LIBS)
dpm_CFLAGS = $(GTKMM_CFLAGS)
################################################################################################
################################################################################################
check_PROGRAMS = testMem testShiftMem testCalendar testSchedule testJudge testTreaty \ testOvertimeExpert testWorker testPool testIRegulator testOrganizer \
                testWriteAndParse testLoadAndSave

testMem_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                 shared/tMem.hpp shared/tMem.cc shared/tMemMain.cc
testShiftMem_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \ shared/tShiftMemory.hpp shared/tShiftMemory.cc shared/tShiftMemoryMain.cc

testCalendar_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \ shared/test/testCalendar.hpp shared/test/testCalendar.cc \
                      shared/test/testCalendarMain.cc
testSchedule_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \ $(S_SCHEDULE) schedule/testSchedule.hpp schedule/testSchedule.cc \
                      schedule/testScheduleMain.cc

testJudge_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                   $(S_SCHEDULE) $(S_LABOURLAW) \
labourLaw/tJudge.hpp labourLaw/tJudge.cc labourLaw/tJudgeMain.cc testTreaty_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                    $(S_SCHEDULE) $(S_LABOURLAW) \
labourLaw/tTreaty.hpp labourLaw/tTreaty.cc labourLaw/tTreatyMain.cc

testOvertimeExpert_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                             $(S_SCHEDULE) $(S_LABOURLAW) \
labourLaw/tOvertimeExpert.hpp labourLaw/tOvertimeExpert.cc \
                            labourLaw/tOvertimeExpertMain.cc
testWorker_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                    $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) \
manpower/tWorker.hpp manpower/tWorker.cc manpower/tWorkerMain.cc

testPool_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                  $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) \
manpower/tPoolLabour.hpp manpower/tPoolLabour.cc manpower/tPoolLabourMain.cc

testIRegulator_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \
                           $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) \
                        manpower/tIRegulator.hpp manpower/tIRegulator.cc \
                        manpower/tIRegulatorMain.cc
testOrganizer_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) utility/simpleUtils.cc \ $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) $(S_ORGANIZER) \
                       organizer/tOrganizer.hpp organizer/tOrganizer.cc \
                       organizer/tOrganizerMain.cc
testWriteAndParse_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) $(S_UTILITY) \ $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) $(S_ORGANIZER) \
                           $(S_DATASTORAGE) \
dataStorage/tWriteAndParse.hpp dataStorage/tWriteAndParse.cc \
                           dataStorage/tWriteAndParseMain.cc
testLoadAndSave_SOURCES = $(S_TESTUTILS) $(S_SHARED) $(S_HELPERFUNCTIONS) $(S_UTILITY) \ $(S_SCHEDULE) $(S_LABOURLAW) $(S_MANPOWER) $(S_ORGANIZER) \
                         $(S_DATASTORAGE) \
dataStorage/tDataStorage.hpp dataStorage/tDataStorage.cc \
                         dataStorage/tDataStorageMain.cc

running make produces:

Making all in src
make[1]: Entering directory `/home/antonio/coding/dpm/10/src'
Makefile:674: .deps/interface/attributeWindow/attributeWindow.Po: No such file or directory Makefile:675: .deps/interface/attributeWindow/needsWindow.Po: No such file or directory Makefile:676: .deps/interface/attributeWindow/shiftAttributeWindow.Po: No such file or directory Makefile:677: .deps/interface/attributeWindow/shiftAttributeWindowConnected.Po: No such file or directory Makefile:678: .deps/interface/attributeWindow/shiftPrefWindow.Po: No such file or directory Makefile:679: .deps/interface/attributeWindow/treatyAttributeMainWindow.Po: No such file or directory Makefile:680: .deps/interface/attributeWindow/treatyOvertimeWindow.Po: No such file or directory Makefile:681: .deps/interface/attributeWindow/treatyOvertimeWindowConnected.Po: No such file or directory Makefile:682: .deps/interface/attributeWindow/treatyRulesWindow.Po: No such file or directory Makefile:683: .deps/interface/attributeWindow/treatyRulesWindowConnected.Po: No such file or directory Makefile:684: .deps/interface/attributeWindow/weekdayPrefWindow.Po: No such file or directory Makefile:685: .deps/interface/attributeWindow/workerAttributeWindow.Po: No such file or directory Makefile:686: .deps/interface/listView/baseView.Po: No such file or directory Makefile:687: .deps/interface/listView/shiftsView.Po: No such file or directory Makefile:688: .deps/interface/listView/shiftsViewConnected.Po: No such file or directory Makefile:689: .deps/interface/listView/treatiesView.Po: No such file or directory Makefile:690: .deps/interface/listView/treatiesViewConnected.Po: No such file or directory Makefile:691: .deps/interface/listView/workersView.Po: No such file or directory Makefile:692: .deps/interface/listView/workersViewConnected.Po: No such file or directory
Makefile:693: .deps/mainWindow.Po: No such file or directory
Makefile:694: .deps/coloredTextField.Po: No such file or directory
Makefile:695: .deps/dateFields.Po: No such file or directory
Makefile:696: .deps/monthBox.Po: No such file or directory
Makefile:697: .deps/poolScheduleField.Po: No such file or directory
Makefile:698: .deps/shiftTable.Po: No such file or directory
Makefile:699: .deps/shiftTableBox.Po: No such file or directory
Makefile:700: .deps/statFields.Po: No such file or directory
Makefile:701: .deps/tableField.Po: No such file or directory
Makefile:702: .deps/textField.Po: No such file or directory
Makefile:703: .deps/workerScheduleField.Po: No such file or directory
Makefile:1385: warning: overriding commands for target `timePeriod.o'
Makefile:772: warning: ignoring old commands for target `timePeriod.o'
Makefile:1391: warning: overriding commands for target `timePeriod.obj'
Makefile:778: warning: ignoring old commands for target `timePeriod.obj'
Makefile:1397: warning: overriding commands for target `calendar.o'
Makefile:784: warning: ignoring old commands for target `calendar.o'
Makefile:1403: warning: overriding commands for target `calendar.obj'
Makefile:790: warning: ignoring old commands for target `calendar.obj'
Makefile:1409: warning: overriding commands for target `schedule.o'
Makefile:796: warning: ignoring old commands for target `schedule.o'
Makefile:1415: warning: overriding commands for target `schedule.obj'
Makefile:802: warning: ignoring old commands for target `schedule.obj'
Makefile:1421: warning: overriding commands for target `misc.o'
Makefile:808: warning: ignoring old commands for target `misc.o'
Makefile:1427: warning: overriding commands for target `misc.obj'
Makefile:814: warning: ignoring old commands for target `misc.obj'
Makefile:1433: warning: overriding commands for target `simpleUtils.o'
Makefile:820: warning: ignoring old commands for target `simpleUtils.o'
Makefile:1439: warning: overriding commands for target `simpleUtils.obj'
Makefile:826: warning: ignoring old commands for target `simpleUtils.obj'
Makefile:1445: warning: overriding commands for target `extendedUtils.o'
Makefile:832: warning: ignoring old commands for target `extendedUtils.o'
Makefile:1451: warning: overriding commands for target `extendedUtils.obj'
Makefile:838: warning: ignoring old commands for target `extendedUtils.obj'
Makefile:1457: warning: overriding commands for target `coreUtilsPrivate.o'
Makefile:844: warning: ignoring old commands for target `coreUtilsPrivate.o'
Makefile:1463: warning: overriding commands for target `coreUtilsPrivate.obj' Makefile:850: warning: ignoring old commands for target `coreUtilsPrivate.obj'
Makefile:1469: warning: overriding commands for target `exceptionHelpers.o'
Makefile:856: warning: ignoring old commands for target `exceptionHelpers.o'
Makefile:1475: warning: overriding commands for target `exceptionHelpers.obj' Makefile:862: warning: ignoring old commands for target `exceptionHelpers.obj'
Makefile:1481: warning: overriding commands for target `miscFunctions.o'
Makefile:868: warning: ignoring old commands for target `miscFunctions.o'
Makefile:1487: warning: overriding commands for target `miscFunctions.obj'
Makefile:874: warning: ignoring old commands for target `miscFunctions.obj'
Makefile:1493: warning: overriding commands for target `judgeRules.o'
Makefile:880: warning: ignoring old commands for target `judgeRules.o'
Makefile:1499: warning: overriding commands for target `judgeRules.obj'
Makefile:886: warning: ignoring old commands for target `judgeRules.obj'
Makefile:1505: warning: overriding commands for target `judge.o'
Makefile:892: warning: ignoring old commands for target `judge.o'
Makefile:1511: warning: overriding commands for target `judge.obj'
Makefile:898: warning: ignoring old commands for target `judge.obj'
Makefile:1517: warning: overriding commands for target `overtimeRules.o'
Makefile:904: warning: ignoring old commands for target `overtimeRules.o'
Makefile:1523: warning: overriding commands for target `overtimeRules.obj'
Makefile:910: warning: ignoring old commands for target `overtimeRules.obj'
Makefile:1529: warning: overriding commands for target `overtimeExpert.o'
Makefile:916: warning: ignoring old commands for target `overtimeExpert.o'
Makefile:1535: warning: overriding commands for target `overtimeExpert.obj'
Makefile:922: warning: ignoring old commands for target `overtimeExpert.obj'
Makefile:1541: warning: overriding commands for target `treaty.o'
Makefile:928: warning: ignoring old commands for target `treaty.o'
Makefile:1547: warning: overriding commands for target `treaty.obj'
Makefile:934: warning: ignoring old commands for target `treaty.obj'
Makefile:1553: warning: overriding commands for target `worker.o'
Makefile:940: warning: ignoring old commands for target `worker.o'
Makefile:1559: warning: overriding commands for target `worker.obj'
Makefile:946: warning: ignoring old commands for target `worker.obj'
Makefile:1565: warning: overriding commands for target `poolLabour.o'
Makefile:952: warning: ignoring old commands for target `poolLabour.o'
Makefile:1571: warning: overriding commands for target `poolLabour.obj'
Makefile:958: warning: ignoring old commands for target `poolLabour.obj'
Makefile:1577: warning: overriding commands for target `organizer.o'
Makefile:964: warning: ignoring old commands for target `organizer.o'
Makefile:1583: warning: overriding commands for target `organizer.obj'
Makefile:970: warning: ignoring old commands for target `organizer.obj'
Makefile:1589: warning: overriding commands for target `dataStorage.o'
Makefile:976: warning: ignoring old commands for target `dataStorage.o'
Makefile:1595: warning: overriding commands for target `dataStorage.obj'
Makefile:982: warning: ignoring old commands for target `dataStorage.obj'
Makefile:1601: warning: overriding commands for target `parsers.o'
Makefile:988: warning: ignoring old commands for target `parsers.o'
Makefile:1607: warning: overriding commands for target `parsers.obj'
Makefile:994: warning: ignoring old commands for target `parsers.obj'
Makefile:1613: warning: overriding commands for target `dataWriters.o'
Makefile:1000: warning: ignoring old commands for target `dataWriters.o'
Makefile:1619: warning: overriding commands for target `dataWriters.obj'
Makefile:1006: warning: ignoring old commands for target `dataWriters.obj'
Makefile:1625: warning: overriding commands for target `htmlExport.o'
Makefile:1012: warning: ignoring old commands for target `htmlExport.o'
Makefile:1631: warning: overriding commands for target `htmlExport.obj'
Makefile:1018: warning: ignoring old commands for target `htmlExport.obj'
Makefile:1637: warning: overriding commands for target `messageMem.o'
Makefile:1024: warning: ignoring old commands for target `messageMem.o'
Makefile:1643: warning: overriding commands for target `messageMem.obj'
Makefile:1030: warning: ignoring old commands for target `messageMem.obj'
Makefile:1649: warning: overriding commands for target `rand.o'
Makefile:1036: warning: ignoring old commands for target `rand.o'
Makefile:1655: warning: overriding commands for target `rand.obj'
Makefile:1042: warning: ignoring old commands for target `rand.obj'
Makefile:1661: warning: overriding commands for target `testMain.o'
Makefile:1048: warning: ignoring old commands for target `testMain.o'
Makefile:1667: warning: overriding commands for target `testMain.obj'
Makefile:1054: warning: ignoring old commands for target `testMain.obj'
Makefile:1673: warning: overriding commands for target `testCalendar.o'
Makefile:1060: warning: ignoring old commands for target `testCalendar.o'
Makefile:1679: warning: overriding commands for target `testCalendar.obj'
Makefile:1066: warning: ignoring old commands for target `testCalendar.obj'
Makefile:1685: warning: overriding commands for target `testCalendarMain.o'
Makefile:1072: warning: ignoring old commands for target `testCalendarMain.o' Makefile:1691: warning: overriding commands for target `testCalendarMain.obj' Makefile:1078: warning: ignoring old commands for target `testCalendarMain.obj'
Makefile:1697: warning: overriding commands for target `tIRegulator.o'
Makefile:1084: warning: ignoring old commands for target `tIRegulator.o'
Makefile:1703: warning: overriding commands for target `tIRegulator.obj'
Makefile:1090: warning: ignoring old commands for target `tIRegulator.obj'
Makefile:1709: warning: overriding commands for target `tIRegulatorMain.o'
Makefile:1096: warning: ignoring old commands for target `tIRegulatorMain.o'
Makefile:1715: warning: overriding commands for target `tIRegulatorMain.obj'
Makefile:1102: warning: ignoring old commands for target `tIRegulatorMain.obj'
Makefile:1721: warning: overriding commands for target `tJudge.o'
Makefile:1108: warning: ignoring old commands for target `tJudge.o'
Makefile:1727: warning: overriding commands for target `tJudge.obj'
Makefile:1114: warning: ignoring old commands for target `tJudge.obj'
Makefile:1733: warning: overriding commands for target `tJudgeMain.o'
Makefile:1120: warning: ignoring old commands for target `tJudgeMain.o'
Makefile:1739: warning: overriding commands for target `tJudgeMain.obj'
Makefile:1126: warning: ignoring old commands for target `tJudgeMain.obj'
Makefile:1745: warning: overriding commands for target `tDataStorage.o'
Makefile:1132: warning: ignoring old commands for target `tDataStorage.o'
Makefile:1751: warning: overriding commands for target `tDataStorage.obj'
Makefile:1138: warning: ignoring old commands for target `tDataStorage.obj'
Makefile:1757: warning: overriding commands for target `tDataStorageMain.o'
Makefile:1144: warning: ignoring old commands for target `tDataStorageMain.o' Makefile:1763: warning: overriding commands for target `tDataStorageMain.obj' Makefile:1150: warning: ignoring old commands for target `tDataStorageMain.obj'
Makefile:1769: warning: overriding commands for target `tMem.o'
Makefile:1156: warning: ignoring old commands for target `tMem.o'
Makefile:1775: warning: overriding commands for target `tMem.obj'
Makefile:1162: warning: ignoring old commands for target `tMem.obj'
Makefile:1781: warning: overriding commands for target `tMemMain.o'
Makefile:1168: warning: ignoring old commands for target `tMemMain.o'
Makefile:1787: warning: overriding commands for target `tMemMain.obj'
Makefile:1174: warning: ignoring old commands for target `tMemMain.obj'
Makefile:1793: warning: overriding commands for target `tOrganizer.o'
Makefile:1180: warning: ignoring old commands for target `tOrganizer.o'
Makefile:1799: warning: overriding commands for target `tOrganizer.obj'
Makefile:1186: warning: ignoring old commands for target `tOrganizer.obj'
Makefile:1805: warning: overriding commands for target `tOrganizerMain.o'
Makefile:1192: warning: ignoring old commands for target `tOrganizerMain.o'
Makefile:1811: warning: overriding commands for target `tOrganizerMain.obj'
Makefile:1198: warning: ignoring old commands for target `tOrganizerMain.obj'
Makefile:1817: warning: overriding commands for target `tOvertimeExpert.o'
Makefile:1204: warning: ignoring old commands for target `tOvertimeExpert.o'
Makefile:1823: warning: overriding commands for target `tOvertimeExpert.obj'
Makefile:1210: warning: ignoring old commands for target `tOvertimeExpert.obj' Makefile:1829: warning: overriding commands for target `tOvertimeExpertMain.o' Makefile:1216: warning: ignoring old commands for target `tOvertimeExpertMain.o' Makefile:1835: warning: overriding commands for target `tOvertimeExpertMain.obj' Makefile:1222: warning: ignoring old commands for target `tOvertimeExpertMain.obj'
Makefile:1841: warning: overriding commands for target `tPoolLabour.o'
Makefile:1228: warning: ignoring old commands for target `tPoolLabour.o'
Makefile:1847: warning: overriding commands for target `tPoolLabour.obj'
Makefile:1234: warning: ignoring old commands for target `tPoolLabour.obj'
Makefile:1853: warning: overriding commands for target `tPoolLabourMain.o'
Makefile:1240: warning: ignoring old commands for target `tPoolLabourMain.o'
Makefile:1859: warning: overriding commands for target `tPoolLabourMain.obj'
Makefile:1246: warning: ignoring old commands for target `tPoolLabourMain.obj'
Makefile:1865: warning: overriding commands for target `testSchedule.o'
Makefile:1252: warning: ignoring old commands for target `testSchedule.o'
Makefile:1871: warning: overriding commands for target `testSchedule.obj'
Makefile:1258: warning: ignoring old commands for target `testSchedule.obj'
Makefile:1877: warning: overriding commands for target `testScheduleMain.o'
Makefile:1264: warning: ignoring old commands for target `testScheduleMain.o' Makefile:1883: warning: overriding commands for target `testScheduleMain.obj' Makefile:1270: warning: ignoring old commands for target `testScheduleMain.obj'
Makefile:1889: warning: overriding commands for target `tShiftMemory.o'
Makefile:1276: warning: ignoring old commands for target `tShiftMemory.o'
Makefile:1895: warning: overriding commands for target `tShiftMemory.obj'
Makefile:1282: warning: ignoring old commands for target `tShiftMemory.obj'
Makefile:1901: warning: overriding commands for target `tShiftMemoryMain.o'
Makefile:1288: warning: ignoring old commands for target `tShiftMemoryMain.o' Makefile:1907: warning: overriding commands for target `tShiftMemoryMain.obj' Makefile:1294: warning: ignoring old commands for target `tShiftMemoryMain.obj'
Makefile:1913: warning: overriding commands for target `tTreaty.o'
Makefile:1300: warning: ignoring old commands for target `tTreaty.o'
Makefile:1919: warning: overriding commands for target `tTreaty.obj'
Makefile:1306: warning: ignoring old commands for target `tTreaty.obj'
Makefile:1925: warning: overriding commands for target `tTreatyMain.o'
Makefile:1312: warning: ignoring old commands for target `tTreatyMain.o'
Makefile:1931: warning: overriding commands for target `tTreatyMain.obj'
Makefile:1318: warning: ignoring old commands for target `tTreatyMain.obj'
Makefile:1937: warning: overriding commands for target `tWorker.o'
Makefile:1324: warning: ignoring old commands for target `tWorker.o'
Makefile:1943: warning: overriding commands for target `tWorker.obj'
Makefile:1330: warning: ignoring old commands for target `tWorker.obj'
Makefile:1949: warning: overriding commands for target `tWorkerMain.o'
Makefile:1336: warning: ignoring old commands for target `tWorkerMain.o'
Makefile:1955: warning: overriding commands for target `tWorkerMain.obj'
Makefile:1342: warning: ignoring old commands for target `tWorkerMain.obj'
Makefile:1961: warning: overriding commands for target `tWriteAndParse.o'
Makefile:1348: warning: ignoring old commands for target `tWriteAndParse.o'
Makefile:1967: warning: overriding commands for target `tWriteAndParse.obj'
Makefile:1354: warning: ignoring old commands for target `tWriteAndParse.obj' Makefile:1973: warning: overriding commands for target `tWriteAndParseMain.o' Makefile:1360: warning: ignoring old commands for target `tWriteAndParseMain.o' Makefile:1979: warning: overriding commands for target `tWriteAndParseMain.obj' Makefile:1366: warning: ignoring old commands for target `tWriteAndParseMain.obj'
make[1]: *** No rule to make target `.deps/workerScheduleField.Po'.  Stop.
make[1]: Leaving directory `/home/antonio/coding/dpm/10/src'
make: *** [all-recursive] Error 1

When i disable bin_PROGS i'am able to make all the tests listed in this file ....

Sorry for misusing this mailinglist,
                                                           antonio



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]