FreeCalypso > hg > ueda-linux
comparison pads2gpcb/main.c @ 51:f2bcf69fce63
pads2gpcb: -s option to enable footprint silk processing
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 30 Jan 2016 21:32:18 +0000 |
parents | 8fa304e2b7e1 |
children | 9d7e2937883d |
comparison
equal
deleted
inserted
replaced
50:c9acfeed99e6 | 51:f2bcf69fce63 |
---|---|
57 char **argv; | 57 char **argv; |
58 { | 58 { |
59 int c; | 59 int c; |
60 extern int optind; | 60 extern int optind; |
61 | 61 |
62 while ((c = getopt(argc, argv, "w:")) != EOF) | 62 while ((c = getopt(argc, argv, "sw:")) != EOF) |
63 switch (c) { | 63 switch (c) { |
64 case 's': | |
65 do_footprint_silk = 1; | |
66 continue; | |
64 case 'w': | 67 case 'w': |
65 process_write_option(); | 68 process_write_option(); |
66 continue; | 69 continue; |
67 default: | 70 default: |
68 usage: | 71 usage: |