Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 341 → Rev 342

/programy/Atmel32_C/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)