synth/uart/makefile

16 lines
213 B
Makefile
Raw Permalink Normal View History

2021-02-23 04:37:18 +00:00
CC = ../bin/cc
LD = ../bin/ld
all: echo.vhdl.inc ledctrl.vhdl.inc
echo.vhdl.inc: echo.o uart.o
ledctrl.vhdl.inc: ledctrl.o uart.o
%.vhdl.inc:
$(LD) -o $@ --vhdl $^
PHONY: clean
clean:
rm -rf *.o *.vhdl.inc