1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-05 02:52:21 +03:00
eda-tools/boom/manu/Makefile.common
Werner Almesberger ac7ebdd822 manu/Makefile were highly redundant. Moved their content to a common Makefile.
- boom/manu/Makefile.common: common makefile for all manufacturers
- boom/manu/Makefile.common (test): added coverage test mode (gen2chr -n)
- murata/Makefile, panasonic/Makefile, stackpole/Makefile, yageo/Makefile:
  use Makfile.common
2010-10-17 00:57:22 -03:00

16 lines
340 B
Makefile

BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
UC_NAME = $(shell echo $(NAME) | tr [a-z] [A-Z])
EQU = ../../dist/all.equ
.PHONY: all test
all: $(NAME).chr
$(NAME).chr: $(EQU) $(NAME).gen
$(BOOM) gen2chr $(UC_NAME) $^ >$@ || { rm -rf $@; exit 1; }
test:
$(BOOM) gen2chr -n $(UC_NAME) $(EQU) $(NAME).gen