1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
put /local/rnd/mod {io_pcb}
put /local/rnd/mod/OBJS [@
$(PLUGDIR)/io_pcb/io_pcb.o
$(PLUGDIR)/io_pcb/file.o
$(PLUGDIR)/io_pcb/parse_y.o
$(PLUGDIR)/io_pcb/parse_l.o
$(PLUGDIR)/io_pcb/attribs.o
@]
put /local/rnd/mod/YACC {$(PLUGDIR)/io_pcb/parse_y}
put /local/rnd/mod/LEX {$(PLUGDIR)/io_pcb/parse_l}
switch /local/module/io_pcb/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
|