summaryrefslogtreecommitdiff
path: root/generateversionscript.awk
blob: 2aa1f4f0a2f99567db791a8a00fed0189413a67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BEGIN {
	print "V1.0 {";
	print "    global:";
} 
{ 
	# Remove the CR character in case the sources are mapped from
	# a Windows share and contain CRLF line endings
	gsub(/\r/,"", $0);
	print "        "  $0 ";";
} 
END {
	print "    local: *;"
	print "};";
}