diff options
author | David Shah <davey1576@gmail.com> | 2018-06-01 11:58:31 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-02 13:48:28 +0200 |
commit | ee0a5374d8902f8f21be25a21ab20ae23b21c103 (patch) | |
tree | acf8d6c980719ecaaff69ba35f4a2b4946c7344e /Makefile | |
parent | d3e54131e70db28399799329d8ba3c6271a9b5fb (diff) | |
download | nextpnr-ee0a5374d8902f8f21be25a21ab20ae23b21c103.tar.gz nextpnr-ee0a5374d8902f8f21be25a21ab20ae23b21c103.tar.bz2 nextpnr-ee0a5374d8902f8f21be25a21ab20ae23b21c103.zip |
Add a CMake based build system
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index fd669ba7..00000000 --- a/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -archs = dummy -common_objs = design.o -dummy_objs = chip.o main.o - -all:: -clean:: - -include ice40/makefile.inc - -CXX = clang -CXXFLAGS = -ggdb -MD -std=c++11 -O2 -Icommon -LDFLAGS = -ggdb -LDLIBS = -lstdc++ - -define binaries -all:: nextpnr-$(1) - -nextpnr-$(1): $$(addprefix objs/$(1)-common-,$$(common_objs)) $$(addprefix objs/$(1)-arch-,$$($(1)_objs)) - $$(CXX) -o $$@ $$(LDFLAGS) -I$(1) $$^ $$(LDLIBS) - -objs/$(1)-common-%.o: common/%.cc - @mkdir -p objs - $$(CXX) -c -o $$@ -D$$(shell echo arch_$(1) | tr a-z A-Z) $$(CXXFLAGS) -I$(1) $$< - -objs/$(1)-arch-%.o: $(1)/%.cc - @mkdir -p objs - $$(CXX) -c -o $$@ -D$$(shell echo arch_$(1) | tr a-z A-Z) $$(CXXFLAGS) -I$(1) $$< -endef - -$(foreach arch,$(archs),$(eval $(call binaries,$(arch)))) - -clean:: - rm -rf $(addprefix nextpnr-,$(archs)) objs - --include objs/*.d |