Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 408 → Rev 409

/programy/avr32/BoardController/Makefile
0,0 → 1,17
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)