15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cat << EOF > ./src/config.h
|
||
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
#define PROJECT_NAME "$PROJECT_NAME"
|
||
|
#define PROJECT_VERSION "$PROJECT_VERSION"
|
||
|
#define PROJECT_PAGE "$PROJECT_PAGE"
|
||
|
#define PROJECT_MAIL "$PROJECT_MAIL"
|
||
|
|
||
|
#endif /* CONFIG_H */
|
||
|
EOF
|
||
|
|