13 lines
332 B
Makefile
13 lines
332 B
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
|
|
# Target file name (without extension).
|
|
TARGET = blinky
|
|
|
|
# List C source files here. (C dependencies are automatically generated.)
|
|
SRC = $(TARGET).c \
|
|
$(LIBS_PATH)/LPC43xx_M4_Startup.c \
|
|
$(LIBS_PATH)/LPC43xx_M4_Interrupts.c \
|
|
$(LIBS_PATH)/hackrf_core.c
|
|
|
|
include ../common/Makefile_inc.mk
|