Fixed Makefile breakage in blinky and blinky_rom_to_ram.

This commit is contained in:
Jared Boone
2012-07-31 21:39:43 -07:00
parent 72ee83eda9
commit 79d352f17f
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,8 @@
BINARY = blinky
SRC = $(BINARY).c
SRC = $(BINARY).c \
../common/hackrf_core.c \
../common/si5351c.c
include ../common/Makefile_inc.mk

View File

@ -2,7 +2,9 @@
BINARY = blinky
SRC = $(BINARY).c
SRC = $(BINARY).c \
../common/hackrf_core.c \
../common/si5351c.c
LDSCRIPT = ../common/LPC4330_M4_rom_to_ram.ld
include ../common/Makefile_inc.mk