forked from wovo/hwlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile.inc
105 lines (93 loc) · 4.11 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
#============================================================================
#
# 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-common.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-i2c.hpp
HEADERS += core/hwlib-spi.hpp
HEADERS += graphics/hwlib-graphics-color.hpp
HEADERS += graphics/hwlib-graphics-image.hpp
HEADERS += graphics/hwlib-graphics-font.hpp
HEADERS += graphics/hwlib-graphics-window.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 += 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-blue-pill.hpp
HEADERS += targets/hwlib-stm32f103c8.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-none.hpp
ifeq ($(TARGET),native)
ifeq ($(OS),Windows_NT)
SEARCH += $(HWLIB)/../SFML-2.5.1/include
LINKER_FLAGS += -L$(HWLIB)/../SFML-2.5.1/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