Home | History | Annotate | Download | only in ant

Lines Matching refs:prereq

195                     System.out.println("PREREQ: " + path);
210 * This looks at the input paths, not at the list of known prereq. Therefore this
212 * prereq file list so that we can process those in a 2nd step.
215 * will process the remaining files in the prereq list.
320 * Check all the prereq files we know about to make sure they're still there, or that they
331 // Loop through our prereq files and make sure they still exist
332 for (File prereq : mPrereqs) {
333 if (prereq.exists() == false) {
335 System.out.println("MISSING FILE: " + prereq.getAbsolutePath());
343 String filePath = prereq.getAbsolutePath();
346 // if the input path is a directory, check if the prereq file is in it,
347 // otherwise check if the prereq file match exactly the input path.
352 if (input.checksForModification(prereq)) {
353 if (prereq.lastModified() > oldestTarget) {
356 "UPDATED FILE: " + prereq.getAbsolutePath());
364 if (prereq.equals(inputFile)) {
365 if (input.checksForModification(prereq)) {
366 if (prereq.lastModified() > oldestTarget) {
369 "UPDATED FILE: " + prereq.getAbsolutePath());
379 if (prereq.lastModified() > oldestTarget) {
381 System.out.println("UPDATED FILE: " + prereq.getAbsolutePath());
388 // If we get this far, then all our prereq are okay