diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
commit | 3fff6023602822531efdae30bc8ebf862967f1ef (patch) | |
tree | 16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscvSocSoftware/projects/murax/wip/makefile |
Initial Commit
Diffstat (limited to 'VexRiscvSocSoftware/projects/murax/wip/makefile')
-rwxr-xr-x | VexRiscvSocSoftware/projects/murax/wip/makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/projects/murax/wip/makefile b/VexRiscvSocSoftware/projects/murax/wip/makefile new file mode 100755 index 0000000..b49287c --- /dev/null +++ b/VexRiscvSocSoftware/projects/murax/wip/makefile @@ -0,0 +1,14 @@ +PROJ_NAME=democ +DEBUG=yes +BENCH=no +MULDIV=no + +SRCS = $(wildcard src/*.c) \ + $(wildcard src/*.cpp) + +INC += -I../../../libs/ +INC += -I../libs/ +LDSCRIPT = ../libs/linker.ld + +include ../../../resources/gcc.mk +include ../../../resources/subproject.mk |