CC = g++
FLAGS = -c
OBJECTS = $(SOURDES:.cpp=.o)

TARGET = clavier

$(TARGET) : $(OBJECTS)

all: $(TARGET)

clean:
	rm -f core *.o $(TARGET)