Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: d52bbe2d577f58dd5538b56321dc898e2ee1ca80 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                                


                                                                       
   
                

                                                                                 



                                                    
                                                  
 
                                        
 







                                  


                                
                                                 

         
                                    
                                                       

         
/*******************************************************************************
 * Copyright (c) 2000, 2004 QNX Software Systems and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.make.internal.core.makefile;

import java.io.File;

import org.eclipse.cdt.make.core.makefile.ITarget;

public class Target implements ITarget {

	String target;

	public Target(String t) {
		target = t;
	}

	public String toString() {
		return target;
	}

	public boolean exits() {
		return new File(target).exists();
	}

	public long lastModified() {
		return new File(target).lastModified();
	}
}

Back to the top