| Rev | Line | |
|---|
| [160] | 1 | APP_NAME=numsplit |
|---|
| 2 | |
|---|
| 3 | USE+= stdio.o |
|---|
| 4 | USE+= mwmr.o |
|---|
| 5 | USE+= common.o |
|---|
| 6 | |
|---|
| 7 | OBJS+= consumer.o |
|---|
| 8 | OBJS+= producer.o |
|---|
| 9 | |
|---|
| 10 | USES=$(patsubst %,$(BUILD_PATH)%,$(USE)) |
|---|
| 11 | SRCS=$(patsubst %.o,%.c,$(OBJS)) |
|---|
| 12 | |
|---|
| 13 | all: $(APP_NAME).bin |
|---|
| 14 | |
|---|
| 15 | .PHONY: compile |
|---|
| 16 | |
|---|
| 17 | BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).bin |
|---|
| 18 | |
|---|
| 19 | $(APP_NAME).bin: compile $(APP_NAME).ld |
|---|
| 20 | $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES) |
|---|
| 21 | $(DU) -D $(BIN_NAME_PATH) > $@.txt |
|---|
| 22 | |
|---|
| 23 | compile: $(SRCS) |
|---|
| 24 | $(CC) -I. $(INCLUDE) $(CFLAGS) $($*.o_CFLAGS) -c $(SRCS) |
|---|
| 25 | $(DU) -D $(OBJS) > $@.txt |
|---|
| 26 | |
|---|
| 27 | clean: |
|---|
| 28 | rm -f *.o *.bin *.txt core *~ 2>$(TRASH) |
|---|
| 29 | rm $(BIN_NAME_PATH) 2>$(TRASH) |
|---|
Note: See
TracBrowser
for help on using the repository browser.