-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 808 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 808 Bytes
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
HWCPP := .
include Makefile.inc
CLANG := "C:/Program Files/LLVM/bin/clang++"
STANDARDESE := "C:/Program Files/standardese/standardese.exe"
MINGW := C:\Program Files\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64
ARGS += -fconcepts-ts
ARGS += -Iinclude
ARGS += -Iinclude/core
ARGS += -Iinclude/targets
ARGS += -Iinclude/chips
ARGS += -Iinclude/shields
ARGS += -I "$(MINGW)\lib\gcc\x86_64-w64-mingw32\7.2.0\include\c++"
ARGS += -I "$(MINGW)\lib\gcc\x86_64-w64-mingw32\7.2.0\include\c++\x86_64-w64-mingw32"
ARGS += -I "$(MINGW)\x86_64-w64-mingw32\include"
doc:
$(STANDARDESE) $(ARGS) include/core/hwcpp-all.hpp
clang:
$(CLANG) $(ARGS) include/core/hwcpp-all.hpp
#STANDARDESE += -I "C:/Program Files/LLVM/lib/clang/5.0.0/include"
#STANDARDESE += -I "C:\SysGCC\arm-eabi\arm-eabi\include\c++\7.2.0"