forked from wovo/hwlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile.inc
143 lines (123 loc) · 5.24 KB
/
makefile.inc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#============================================================================
#
# makefile-include for bmptk:
# sets
# - the search path (the hwlib/include directory)
# - the dependencies (all hwlib source files)
# - the sources (only hwlib.cpp)
#
# (c) Wouter van Ooijen (wouter@voti.nl) 2017
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
#============================================================================
SEARCH += $(HWLIB)/library
SOURCES += hwlib.cpp
HEADERS += hwlib.hpp
HEADERS += hwlib-all.hpp
HEADERS += core/hwlib-defines.hpp
HEADERS += core/hwlib-targets.hpp
HEADERS += core/hwlib-panic.hpp
HEADERS += core/hwlib-noncopyable.hpp
HEADERS += core/hwlib-common.hpp
HEADERS += core/hwlib-ratio.hpp
HEADERS += core/hwlib-background.hpp
HEADERS += core/hwlib-color.hpp
HEADERS += core/hwlib-random.hpp
HEADERS += core/hwlib-wait.hpp
HEADERS += pins/hwlib-pin.hpp
HEADERS += pins/hwlib-pin-dummies.hpp
HEADERS += pins/hwlib-pin-stores.hpp
HEADERS += pins/hwlib-pin-from-pin.hpp
HEADERS += pins/hwlib-pin-invert.hpp
HEADERS += pins/hwlib-pin-all.hpp
HEADERS += pins/hwlib-pin-direct.hpp
HEADERS += pins/hwlib-pin-demos.hpp
HEADERS += ports/hwlib-port.hpp
HEADERS += ports/hwlib-port-from-port.hpp
HEADERS += ports/hwlib-port-from-pins.hpp
HEADERS += ports/hwlib-port-invert.hpp
HEADERS += ports/hwlib-port-all.hpp
HEADERS += ports/hwlib-port-direct.hpp
HEADERS += ports/hwlib-port-demos.hpp
HEADERS += char-io/hwlib-ostream.hpp
HEADERS += char-io/hwlib-istream.hpp
HEADERS += char-io/hwlib-bb-uart.hpp
HEADERS += char-io/hwlib-console.hpp
HEADERS += char-io/hwlib-terminal.hpp
HEADERS += char-io/hwlib-terminal-demos.hpp
HEADERS += core/hwlib-test.hpp
HEADERS += core/hwlib-string.hpp
HEADERS += core/hwlib-xy.hpp
HEADERS += core/hwlib-adc.hpp
HEADERS += core/hwlib-dac.hpp
HEADERS += core/hwlib-dac-demos.hpp
HEADERS += core/hwlib-servo.hpp
HEADERS += core/hwlib-i2c.hpp
HEADERS += core/hwlib-spi.hpp
HEADERS += graphics/hwlib-graphics-image.hpp
HEADERS += graphics/hwlib-graphics-image-decorators.hpp
HEADERS += graphics/hwlib-graphics-font.hpp
HEADERS += graphics/hwlib-graphics-window.hpp
HEADERS += graphics/hwlib-graphics-canvas.hpp
HEADERS += graphics/hwlib-graphics-drawables.hpp
HEADERS += graphics/hwlib-graphics-window-decorators.hpp
HEADERS += graphics/hwlib-graphics-window-demos.hpp
HEADERS += graphics/hwlib-graphics-window-terminal.hpp
HEADERS += graphics/hwlib-graphics-font-8x8.hpp
HEADERS += graphics/hwlib-graphics-font-16x16.hpp
HEADERS += peripherals/hwlib-pcf8574.hpp
HEADERS += peripherals/hwlib-pcf8591.hpp
HEADERS += peripherals/hwlib-hc595.hpp
HEADERS += peripherals/hwlib-hd44780.hpp
HEADERS += peripherals/hwlib-glcd-5510.hpp
HEADERS += peripherals/hwlib-glcd-oled.hpp
HEADERS += peripherals/hwlib-glcd-st7789.hpp
HEADERS += peripherals/hwlib-matrix-keypad.hpp
HEADERS += peripherals/hwlib-servo-background.hpp
HEADERS += shields/hwlib-arduino-multifunction-shield.hpp
HEADERS += targets/hwlib-atmega328.hpp
HEADERS += targets/hwlib-arduino-uno.hpp
HEADERS += targets/hwlib-my-first-dev-board.hpp
HEADERS += targets/hwlib-arduino-due.hpp
HEADERS += targets/hwlib-stm32f1xx.hpp
HEADERS += targets/hwlib-stm32f103c8.hpp
HEADERS += targets/hwlib-blue-pill.hpp
HEADERS += targets/hwlib-termite.hpp
#HEADERS += targets/hwlib-stm32f030x6.hpp
HEADERS += targets/hwlib-db103.hpp
HEADERS += targets/hwlib-native-windows.hpp
HEADERS += targets/hwlib-native-linux.hpp
HEADERS += targets/hwlib-native-sfml.hpp
HEADERS += targets/hwlib-teensy-40.hpp
HEADERS += targets/hwlib-none.hpp
RELATIVE ?= $(HWLIB)
ifneq ($(wildcard $(HWLIB)/makefile.custom),)
include $(HWLIB)/makefile.custom
else ifneq ($(wildcard $(HWLIB)/../makefile.custom),)
include $(HWLIB)/../makefile.custom
else
include $(HWLIB)/makefile.local
endif
# add Catch
SEARCH += $(CATCH)/single_include
SEARCH += $(CATCH)/single_include/catch2
# add Boost
SEARCH += $(BOOST)
# add SFML
ifeq ($(TARGET),native)
ifeq ($(OS),Windows_NT)
SEARCH += $(SFML)/include
LINKER_FLAGS += -L$(SFML)/lib
LINKER_FLAGS += -lsfml-graphics-s -lsfml-window-s -lsfml-system-s
LINKER_FLAGS += -lopengl32 -lgdi32 -lws2_32 -lwinmm
DEFINES += -DSFML_STATIC
else
LINKER_FLAGS += -lsfml-graphics -lsfml-window -lsfml-system
DEFINES += -DSFML_STATIC
endif
endif
# defer to bmptk
include $(BMPTK)/Makefile.inc