aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: fd669ba71d96e117a5f0e110fa48d39d6c563abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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