Subversion Repositories svnkaklik

Compare Revisions

No changes between revisions

Ignore whitespace Rev 341 → Rev 342

/programy/Atmel32_C/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)
/programy/Atmel32_C/hello/hello.c
0,0 → 1,8
#include <stdio.h>
 
int main(void)
{
printf("Hello World!\n");
return 0;
}
 
/programy/Atmel32_C/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