diff options
Diffstat (limited to 'VexRiscvSocSoftware/projects/raw/simple/makefile')
-rw-r--r-- | VexRiscvSocSoftware/projects/raw/simple/makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/projects/raw/simple/makefile b/VexRiscvSocSoftware/projects/raw/simple/makefile new file mode 100644 index 0000000..19e06cc --- /dev/null +++ b/VexRiscvSocSoftware/projects/raw/simple/makefile @@ -0,0 +1,16 @@ +PROJ_NAME=simple +DEBUG=no +BENCH=no +MULDIV?=yes + +SRCS = $(wildcard src/*.c) \ + $(wildcard src/*.S) + +LDSCRIPT = ../libs/simple.ld + + +include ../../../resources/gcc.mk +include ../../../resources/subproject.mk + + + |