diff options
author | Paul Selkirk <paul@psgd.org> | 2016-05-16 08:54:38 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-05-16 08:54:38 -0400 |
commit | a63f78e79a9f8f098235ad5482390e3b0eb6762e (patch) | |
tree | 72205fc1eda1f55c132ecdbf9b8410095a1e7cdd /build/Makefile | |
parent | 5c7631ef559c68bd8d75a081237c39d5d147deb6 (diff) |
fix Makefile
Diffstat (limited to 'build/Makefile')
-rw-r--r-- | build/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/Makefile b/build/Makefile index 050789a..ea8d032 100644 --- a/build/Makefile +++ b/build/Makefile @@ -1,6 +1,6 @@ # Localize all the relative path awfulness in one variable. -CORE_TREE := $(abspath ../../../..) +CORE_TREE := $(abspath ../../..) # Figure out what the native word size is on the build host, because # the XiLinx tools care for some reason. @@ -47,10 +47,10 @@ rsa: # Verilog files that always go with builds on this platform. vfiles = \ - $(CORE_TREE)/platform/alpha/fmc/rtl/alpha_fmc_top.v \ - $(CORE_TREE)/platform/alpha/common/rtl/alpha_regs.v \ - $(CORE_TREE)/platform/alpha/common/rtl/alpha_clkmgr.v \ - $(CORE_TREE)/platform/alpha/common/rtl/clkmgr_dcm.v \ + $(CORE_TREE)/platform/alpha/rtl/alpha_fmc_top.v \ + $(CORE_TREE)/platform/alpha/rtl/alpha_regs.v \ + $(CORE_TREE)/platform/alpha/rtl/alpha_clkmgr.v \ + $(CORE_TREE)/platform/alpha/rtl/clkmgr_mmcm.v \ ./core_selector.v \ $(CORE_TREE)/comm/fmc/src/rtl/cdc_bus_pulse.v \ $(CORE_TREE)/comm/fmc/src/rtl/fmc_arbiter_cdc.v \ @@ -83,4 +83,4 @@ distclean: clean VERILATOR_FLAGS = --lint-only --top-module $(top_module) -Wall -Wno-fatal -Wno-DECLFILENAME lint: - verilator ${VERILATOR_FLAGS} $(vfiles) $(CORE_TREE)/platform/alpha/common/rtl/lint-dummy.v + verilator ${VERILATOR_FLAGS} $(vfiles) $(CORE_TREE)/platform/alpha/rtl/lint-dummy.v |