Commit fccfa470 authored by raburton's avatar raburton

simplify 2 of the make install targets - don't need individual targets for library & modudle files

parent dc169e69
# Install component libraries # Install component libraries
include ../libs.linux include ../libs.linux
TARGETS=*.dcm *.lib *.sym
install: $(TARGETS)
$(KICAD_LIBRARY): $(KICAD_LIBRARY):
mkdir -p $(KICAD_LIBRARY) mkdir -p $(KICAD_LIBRARY)
$(TARGETS): $(KICAD_LIBRARY) install: $(KICAD_LIBRARY)
cp -R $@ $(KICAD_LIBRARY) cp *.dcm *.lib *.sym $(KICAD_LIBRARY)
.PHONY: $(TARGETS) .PHONY: $(TARGETS)
# Install modules and 3d models # Install modules and 3d models
include ../libs.linux include ../libs.linux
TARGETS=*.brd *.equ *.mdc *.mod packages3d
install: $(TARGETS)
$(KICAD_MODULES): $(KICAD_MODULES):
mkdir -p $(KICAD_MODULES) mkdir -p $(KICAD_MODULES)
$(TARGETS): $(KICAD_MODULES) install: $(KICAD_MODULES)
cp -R $@ $(KICAD_MODULES) cp *.brd *.equ *.mdc *.mod $(KICAD_MODULES)
cp -R packages3d $(KICAD_MODULES)
.PHONY: $(TARGETS) .PHONY: $(TARGETS)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment