You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- EAGLE ?= /usr/bin/eagle
- cwd := $(shell pwd)
-
-
- all: SideA.zip SideB.zip
-
- %.zip: %.brd
- # eagle has no option to run the cam processor with a certain
- # job file ...
- $(EAGLE) -C "MANUFACTURING CAM;" $<
-
- # generates the panel using the script for eagle
- SideA.brd SideB.brd: master.brd
- $(EAGLE) -C "RUN $(cwd)/genpanel.ulp; QUIT;" "$<"
-
- master.brd: ../weihnachtsbaum2.0.brd
- cp "$<" "$@"
-
- clean:
- rm -rf master.brd SideA.brd SideB.brd *.*#*
|