| ifeq ($(VERILATOR_ROOT),) |
| VERILATOR_ROOT ?= $(shell bash -c 'verilator -V|grep VERILATOR_ROOT | head -1 | sed -e " s/^.*=\s*//"') |
| VROOT := $(VERILATOR_ROOT) |
| VINCD := $(VROOT)/include |
| RTLOBJDIR := $(RTLDIR)/obj_dir |
| RTLOBJ := $(RTLOBJDIR)/Vsimtop__ALL.a |
| LIBS := $(shell pkg-config sdl2 --cflags --libs) -lm |
| -Wall -Og -g $(shell pkg-config sdl2 --cflags) |
| OBJS := $(CSRCS:%.c=$(OBJODIR)/%.o) \ |
| $(CPPSRCS:%.cpp=$(OBJODIR)/%.o) |
| $(OBJODIR)/%.o: %.c $(RTLOBJ) |
| @$(CC) $(COMMONFLAGS) $(CCFLAGS) $(INCLUDES) -c -o $@ $< |
| $(OBJODIR)/%.o: %.cpp $(RTLOBJ) |
| @$(CXX) $(COMMONFLAGS) $(CPPFLAGS) $(INCLUDES) -c -o $@ $< |
| $(OBJODIR)/%.o: $(VINCD)/%.cpp |
| @$(CXX) $(COMMONFLAGS) $(CPPFLAGS) $(INCLUDES) -c -o $@ $< |
| @$(LD) $(LDFLAGS) $(OBJS) $(LIBS) -o $(TARGET) |
| # Declare the contents of the .PHONY variable as phony. We keep that |
| # information in a variable so we can use it in if_changed and friends. |