1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
put /local/rnd/mod {import_gcode}
put /local/rnd/mod/CONF {$(PLUGDIR)/import_gcode/import_gcode_conf.h}
put /local/rnd/mod/CONFFILE {import_gcode.conf}
put /local/rnd/mod/CONFVAR {import_gcode_conf_internal}
put /local/rnd/mod/OBJS [@
$(PLUGDIR)/import_gcode/import_gcode.o
$(PLUGDIR)/import_gcode/gcode_exec.o
$(PLUGDIR)/import_gcode/gcode_vm.o
$(PLUGDIR)/import_gcode/gcode_lex.o
$(PLUGDIR)/import_gcode/gcode.tab.o
@]
switch /local/module/import_gcode/controls
case {buildin} include /local/camv/tmpasm/buildin; end;
case {plugin} include /local/camv/tmpasm/plugin; end;
case {disable} include /local/camv/tmpasm/disable; end;
end
|