10 lines
185 B
Bash
10 lines
185 B
Bash
#!/bin/bash
|
|
|
|
rm w5500/*
|
|
pushd ioLibrary_Driver
|
|
for D in Ethernet Ethernet/W5500 Internet/DHCP Internet/DNS Internet/httpServer Internet/MQTT; do
|
|
cp $D/*.c $D/.h ../w5500
|
|
done
|
|
popd
|
|
|