diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-03-07 21:32:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 21:32:52 +0000 |
commit | 7b036c07e40a6f3d3cf1ddfc5d88d3a36beb4e46 (patch) | |
tree | c1459952c20e4534d33016d4fc2cf6729228c0e6 /software/dhrystone/Makefile | |
parent | 84781219c87c0b9148e318f3e358ef7de03e251c (diff) | |
parent | def12d50a686774196c613a819e6afb744ee290e (diff) |
Merge pull request #195 from sifive/remove-legacy
Remove legacy BSPs and Software
Diffstat (limited to 'software/dhrystone/Makefile')
-rw-r--r-- | software/dhrystone/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/software/dhrystone/Makefile b/software/dhrystone/Makefile deleted file mode 100644 index 4602653..0000000 --- a/software/dhrystone/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -TARGET := dhrystone - -ASM_SRCS := -C_SRCS := dhry_stubs.c dhry_printf.c -HEADERS := dhry.h - -DHRY_SRCS := dhry_1.c dhry_2.c -DHRY_CFLAGS := -O3 -DTIME -fno-inline -fno-builtin-printf -Wno-implicit -mcmodel=medany -march=$(RISCV_ARCH) -mabi=$(RISCV_ABI) - -XLEN ?= 32 -CFLAGS := -O3 -fno-common -mcmodel=medany -march=$(RISCV_ARCH) -mabi=$(RISCV_ABI) -mexplicit-relocs -DNOENUM -falign-functions=4 -LDFLAGS := -Wl,--wrap=scanf -Wl,--wrap=printf -march=$(RISCV_ARCH) -mabi=$(RISCV_ABI) -mcmodel=medany - -DHRY_OBJS := $(patsubst %.c,%.o,$(DHRY_SRCS)) -LINK_OBJS := $(DHRY_OBJS) - -BSP_BASE = ../../bsp -include $(BSP_BASE)/env/common.mk - -$(DHRY_OBJS): %.o: %.c $(HEADERS) - $(CC) $(CFLAGS) $(DHRY_CFLAGS) -c -o $@ $< |