executable: subdir/file.cc include_dir_1/include1.h include_dir_2/include2.h
	c++ -oexecutable -Iinclude_dir_1 -I include_dir_2 subdir/file.cc

clean:
	rm -f executable
