Hi,

ich hab folgenden Code im AVRStudio:

Code:
#ifndef F_CPU
	#define F_CPU 1000000
#endif

#include "inttypes.h"
#include "compat/twi.h"
#include "avr/io.h"
#include "avr/pgmspace.h"

#include "i2cmaster.h"
#include "i2clcd.h"





int main(void)
{
	i2c_init();
	lcd_init();
	unsigned char string[] = "Hi World";
	lcd_print(string);				//-	Print a string
	lcd_nextline();
	
	/*
	unsigned char line = 0x00, row = 0x00;
	lcd_getlr(&line, &row);				//-	Get cursor position into two unsigned chars
	*/
	
	//-	Turn cursor off and activate blinking
//	lcd_command(LCD_DISPLAYON | LCD_CURSOROFF | LCD_BLINKINGON);
	
	while (true){}					//-	Endless loop
}
aber ich bekomm immer die Fehlermeldung:

make: *** No rule to make target `../../../LCD', needed by `i2clcd.o'. Stop.

kann mir des jemand erklären? Ich hatte den Fehler schon beim PN aber ich komm einfach nicht mehr drauf was ich dann gemacht hab dass es wieder funzt^^

thx

Bene