forked from ports/contrib
9 lines
127 B
Bash
Executable File
9 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION="#VER#"
|
|
OUT="$1"
|
|
|
|
echo '#include "iw.h"' > "$OUT"
|
|
echo "const char iw_version[] = \"$VERSION\";" >> "$OUT"
|
|
|