diff options
Diffstat (limited to 'VexRiscvSocSoftware/projects/murax/dhrystone/makefile')
-rw-r--r-- | VexRiscvSocSoftware/projects/murax/dhrystone/makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/VexRiscvSocSoftware/projects/murax/dhrystone/makefile b/VexRiscvSocSoftware/projects/murax/dhrystone/makefile new file mode 100644 index 0000000..f468a16 --- /dev/null +++ b/VexRiscvSocSoftware/projects/murax/dhrystone/makefile @@ -0,0 +1,26 @@ +PROJ_NAME=dhrystone +DEBUG=no +BENCH=no +MULDIV=no + + + +CFLAGS += -fno-inline -fno-common +LDFLAGS += -lc + +CFLAGS += -DPREALLOCATE=1 -DHOST_DEBUG=0 -DMSC_CLOCK + + +SRCS = src/main.c src/dhry_1.c src/dhry_2.c src/crt.S src/stdlib.c +LDFLAGS += -lc #Used to get memcpy/strcmp stuff only + +INC += -I../../../libs/ +INC += -I../libs/ +LDSCRIPT = linker.ld + + +include ../../../resources/gcc.mk +include ../../../resources/subproject.mk + + + |