source: soft/giet_vm/apps/hello/Makefile @ 160

Last change on this file since 160 was 160, checked in by karaoui, 12 years ago

giet-vm new version

File size: 464 bytes
RevLine 
[160]1APP_NAME=hello
2
3USE+= stdio.o
4
5USES=$(patsubst %,$(BUILD_PATH)%,$(USE))
6
7OBJS= main.o
8
9all: $(APP_NAME).bin
10
11BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).bin
12
13$(APP_NAME).bin: $(OBJS) $(APP_NAME).ld
14        $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES)
15        $(DU) -D $(BIN_NAME_PATH) > $@.txt
16
17%.o: %.c
18        $(CC)  $(INCLUDE) $(CFLAGS) $($*.o_CFLAGS) -c -o  $@ $<
19        $(DU) -D  $@ >  $@.txt
20
21
22clean:
23        rm -f *.o *.bin *.txt core *~ 2>$(TRASH)
24        rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracBrowser for help on using the repository browser.