File: doublecheck.sh

package info (click to toggle)
open-plc-utils 0.0.6%2Bgit20230504.1ba7d5a0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,212 kB
  • sloc: ansic: 60,875; xml: 16,179; sh: 1,216; makefile: 698
file content (20 lines) | stat: -rwxr-xr-x 602 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

# ====================================================================
#   Copyright (c) 2010-2012 Qualcomm Atheros Incorporated.
# --------------------------------------------------------------------

PROJECTS=VisualStudioNET
FOLDERS="ether key mdio mme nodes nvm pib plc ram serial tools"

# ====================================================================
#   compile all programs stand-alone to verify include statements;
# --------------------------------------------------------------------

for folder in ${FOLDERS}; do
	echo ${folder}
	cd ${folder}
	sh ${folder}.sh
	cd ..
done