Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 1 | BMV2_CPU_PORT=255 |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 2 | |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 3 | BMV2_OPTIONS=-DTARGET_BMV2 |
| 4 | |
| 5 | all: bmv2 |
| 6 | |
| 7 | bmv2: |
| 8 | p4c -v -x p4-16 -b bmv2-ss-p4org \ |
| 9 | $(BMV2_OPTIONS) -o p4c-out/bmv2 \ |
| 10 | --p4runtime-file p4c-out/bmv2/fabric.p4info \ |
| 11 | --p4runtime-format text fabric.p4 |
| 12 | mv p4c-out/bmv2/fabric.p4rt p4c-out/bmv2/fabric.p4info |
| 13 | rm -f p4c-out/bmv2/fabric.p4i |
| 14 | |
| 15 | custom: |
| 16 | p4c -v -x p4-16 -b $(BACKEND) \ |
| 17 | $(BACKEND_OPTIONS) -o p4c-out/$(BACKEND) \ |
| 18 | --p4runtime-file p4c-out/$(BACKEND)/fabric.p4info \ |
| 19 | --p4runtime-format text fabric.p4 |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 20 | |
| 21 | clean: |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 22 | rm -rf p4c-out/* |