aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 13 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 2ddcb724..fd669ba7 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,11 @@ 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
@@ -10,21 +15,21 @@ LDLIBS = -lstdc++
define binaries
all:: nextpnr-$(1)
-nextpnr-$(1): $$(addprefix build/$(1)-common-,$$(common_objs)) $$(addprefix build/$(1)-arch-,$$($(1)_objs))
+nextpnr-$(1): $$(addprefix objs/$(1)-common-,$$(common_objs)) $$(addprefix objs/$(1)-arch-,$$($(1)_objs))
$$(CXX) -o $$@ $$(LDFLAGS) -I$(1) $$^ $$(LDLIBS)
-build/$(1)-common-%.o: common/%.cc
- @mkdir -p build
+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) $$<
-build/$(1)-arch-%.o: $(1)/%.cc
- @mkdir -p build
+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)) build
+clean::
+ rm -rf $(addprefix nextpnr-,$(archs)) objs
--include build/*.d
+-include objs/*.d