1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
put /local/pcb/mod {export_gcode}
put /local/pcb/mod/OBJS [@ $(PLUGDIR)/export_gcode/gcode.o $(PLUGDIR)/export_gcode/decompose.o $(PLUGDIR)/export_gcode/trace.o $(PLUGDIR)/export_gcode/curve.o @]
switch /local/pcb/export_gcode/controls
case {disable} end;
default
put /local/pcb/mod/LDFLAGS libs/gui/gd/ldflags
put /local/pcb/mod/CFLAGS libs/gui/gd/cflags
end
end
switch /local/pcb/export_gcode/controls
case {buildin} include /local/pcb/tmpasm/buildin; end;
case {plugin} include /local/pcb/tmpasm/plugin; end;
case {disable} include /local/pcb/tmpasm/disable; end;
end
|