diff options
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/Makefile b/examples/Makefile index 927010d..dbcfa92 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -105,9 +105,10 @@ BIN += sched.bin endif ifeq ($(ARCH),blackfin) -ELF += smc91111_eeprom -SREC += smc91111_eeprom.srec -BIN += smc91111_eeprom.bin +BFIN_BIN = smc91111_eeprom smc911x_eeprom +ELF += $(BFIN_BIN) +SREC += $(addsuffix .srec,$(BFIN_BIN)) +BIN += $(addsuffix .bin,$(BFIN_BIN)) endif # The following example is pretty 8xx specific... |