No changes between revisions
/programy/avr32/hello/hello.elf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes: |
Added: svn:executable |
+* |
\ No newline at end of property |
Added: svn:mime-type |
+application/octet-stream |
\ No newline at end of property |
/programy/avr32/hello/Makefile |
0,0 → 1,17 |
TARGET=hello.elf |
OBJECTS=hello.o |
CC=avr32-linux-gcc |
CFLAGS=-Wall -g # warnings, debugging symbols |
LDFLAGS= |
LIBS= |
|
.PHONY: all |
all: $(TARGET) |
|
$(TARGET): $(OBJECTS) |
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) |
|
.PHONY: clean |
clean: |
-$(RM) $(TARGET) $(OBJECTS) |
|