Add LPH series switch footprint
[hw/altusmetrum] / packages / switches / Makefile
1 .SUFFIXES: .5c .py .fp
2
3 FOOTPRINTS = \
4         cus-12.fp \
5         lph.fp
6
7 .5c.fp:
8         nickle $*.5c > $@
9
10 .py.fp:
11         python $*.py > $@
12
13 all: $(FOOTPRINTS) .gitignore
14
15 $(FOOTPRINTS): ../footprint.5c
16
17 clean:
18         rm -f $(FOOTPRINTS)
19
20 .gitignore: Makefile
21         for i in $@ $(FOOTPRINTS); do echo $$i; done > $@