Lines Matching full:prereq
194 System.out.println("PREREQ: " + path);
209 * This looks at the input paths, not at the list of known prereq. Therefore this
211 * prereq file list so that we can process those in a 2nd step.
214 * will process the remaining files in the prereq list.
319 * Check all the prereq files we know about to make sure they're still there, or that they
330 // Loop through our prereq files and make sure they still exist
331 for (File prereq : mPrereqs) {
332 if (prereq.exists() == false) {
334 System.out.println("MISSING FILE: " + prereq.getAbsolutePath());
342 String filePath = prereq.getAbsolutePath();
345 // if the input path is a directory, check if the prereq file is in it,
346 // otherwise check if the prereq file match exactly the input path.
351 if (input.checksForModification(prereq)) {
352 if (prereq.lastModified() > oldestTarget) {
355 "UPDATED FILE: " + prereq.getAbsolutePath());
363 if (prereq.equals(inputFile)) {
364 if (input.checksForModification(prereq)) {
365 if (prereq.lastModified() > oldestTarget) {
368 "UPDATED FILE: " + prereq.getAbsolutePath());
378 if (prereq.lastModified() > oldestTarget) {
380 System.out.println("UPDATED FILE: " + prereq.getAbsolutePath());
387 // If we get this far, then all our prereq are okay