-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.link
More file actions
36 lines (27 loc) · 1.07 KB
/
Makefile.link
File metadata and controls
36 lines (27 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#############################################################################
#
# makefile.shared common settings and link to bmptk/makefile.inc
#
# (c) Wouter van Ooijen (www.voti.nl) 2017
#
# This file is in the public domain.
#
#############################################################################
# add Catch
SEARCH += ../../../libraries/Catch2/single_include/catch2
# add internal communication module
internal_comm ?= ../../../libraries/internal_communication
include $(internal_comm)/Makefile.inc
# add hwlib
HWLIB ?= ../../../libraries/hwlib
include $(HWLIB)/Makefile.inc
USART ?= ../../../libraries/USART_library
include $(USART)/Makefile.inc
internal_comm ?= ../../../libraries/internal_communication
include $(internal_comm)/Makefile.inc
DATASTRUCTURES ?= ../../../libraries/datastructures
include $(DATASTRUCTURES)/Makefile.inc
# set BMPTK to the bmptk subdirectory
BMPTK := ../../../programs/bmptk
# Defer to the bmptk/Makefile.inc to do the work
include $(BMPTK)/Makefile.inc