Subversion Repositories svnkaklik

Rev

Rev 409 | Blame | Compare with Previous | Last modification | View Log | Download

TARGET=BoardController.elf
#OBJECTS=BoardController.o
CC=avr32-linux-c++
CFLAGS=-Wall -g # warnings, debugging symbols
LDFLAGS=
LIBS=

.PHONY: all
all: $(TARGET) 

$(TARGET): $(OBJECTS)
        $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) 

.PHONY: clean
clean:
        -$(RM) $(TARGET) $(OBJECTS)