source: soft/giet_vm/applications/hello/Makefile

Last change on this file was 824, checked in by alain, 8 years ago

bloup

File size: 516 bytes
RevLine 
[191]1
[824]2CC = mipsel-unknown-elf-gcc
3AS = mipsel-unknown-elf-as
4LD = mipsel-unknown-elf-ld
5DU = mipsel-unknown-elf-objdump
6AR = mipsel-unknown-elf-ar
[191]7
[824]8APP_NAME = hello
[191]9
[824]10LIBS = -L../../build/libs -luser
[191]11
[824]12LIB_DEPS = ../../build/libs/libuser.a
[191]13
[824]14INCLUDES = -I. -I../.. -I../../giet_libs
[191]15
[824]16OBJS= hello.o
[191]17
[824]18appli.elf: $(OBJS) $(APP_NAME).ld $(LIBS_DEPS) $(APP_NAME).py
19        $(LD) -o $@ -T $(APP_NAME).ld $(OBJS) $(LIBS)
20        $(DU) -D $@ > $@.txt
21
[191]22%.o: %.c
[824]23        $(CC)  $(INCLUDES) $(CFLAGS) -c -o  $@ $<
[191]24
25clean:
[824]26        rm -f *.o *.elf *.txt core *~
Note: See TracBrowser for help on using the repository browser.