forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[py] Add sairedis python module skeleton (sonic-net#607)
* [py] Add sairedis python module * Update Makefiles * Fix directory include
- Loading branch information
Showing
5 changed files
with
852 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SUBDIRS = meta lib vslib syncd saiplayer saidump saidiscovery tests saisdkdump | ||
SUBDIRS = meta lib vslib syncd saiplayer saidump saidiscovery tests saisdkdump python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
all: sairedis.cpp setup.py | ||
python setup.py build | ||
|
||
install: all | ||
python setup.py install --user | ||
|
||
.PHONY: clean | ||
|
||
clean: | ||
rm -f *.o *~ | ||
rm -rf build | ||
|
Oops, something went wrong.