aboutsummaryrefslogtreecommitdiff
path: root/src/targetfile.h
blob: 37e6770e4557a2a5e68bea1d75b31aa61313057b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TARGET_FILE_H
#define TARGET_FILE_H

#include <stdint.h>

#include "target.h"

class TargetFile : public Target
{
public:
	TargetFile();
	virtual ~TargetFile();

	virtual void check( Build &bld );
	virtual void clean( Build &bld );

private:

};

#endif