forked from wovo/hwlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile.inc
66 lines (57 loc) · 2.38 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
#============================================================================
#
# 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-panic.hpp
HEADERS += core/hwlib-common.hpp
HEADERS += core/hwlib-pin.hpp
HEADERS += core/hwlib-pin-dummies.hpp
HEADERS += core/hwlib-pin-stores.hpp
HEADERS += core/hwlib-pin-from.hpp
HEADERS += core/hwlib-pin-invert.hpp
HEADERS += core/hwlib-pin-all.hpp
HEADERS += core/hwlib-port.hpp
HEADERS += core/hwlib-port-from-pins.hpp
HEADERS += core/hwlib-port-decorators.hpp
HEADERS += core/hwlib-wait.hpp
HEADERS += core/hwlib-adc.hpp
HEADERS += core/hwlib-dac.hpp
HEADERS += core/hwlib-console.hpp
HEADERS += core/hwlib-graphics.hpp
HEADERS += core/hwlib-font-default-8x8.hpp
HEADERS += core/hwlib-font-default-16x16.hpp
HEADERS += core/hwlib-ostream.hpp
HEADERS += core/hwlib-i2c.hpp
HEADERS += core/hwlib-spi.hpp
HEADERS += peripherals/hwlib-pcf8574a.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 += core/hwlib-string.hpp
HEADERS += core/hwlib-demo.hpp
HEADERS += core/hwlib-test.hpp
HEADERS += targets/hwlib-arduino-due.hpp
HEADERS += targets/hwlib-arduino-uno.hpp
HEADERS += targets/hwlib-blue-pill.hpp
HEADERS += targets/hwlib-stm32f103c8.hpp
HEADERS += targets/hwlib-db103.hpp
HEADERS += targets/hwlib-native.hpp
HEADERS += targets/hwlib-none.hpp