1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-09-13 00:45:53 +03:00
ben-wpan/modules/Makefile
Werner Almesberger c0127b490c KiCad module build and xtal-4 cleanup.
- modules/Makefile: generate .mod files from .fpd
- components/xtal-4.lib: changed symbol name inside the .lib file as well
- modules/xtal-4.fpd: added package dimensions measurements
2010-08-12 10:50:48 -03:00

14 lines
185 B
Makefile

MODULES=meander mini-usb stdpass xtal-4
.SUFFIXES: .fpd .mod
.PHONY: all clean
all: $(MODULES:%=%.mod)
clean:
rm -f *~*.fpd
rm -f $(MODULES:%=%.mod)
.fpd.mod:
fped -k $< $@