repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add swifi to the build/install.
[minix.git]
/
tools
/
tell_config
blob
89e571ec30e29c3d433d892c7045771cb4cfa850
1
#!/bin/sh
2
#
3
# tellconfig - Tell the value of a <minix/config.h> parameter
4
# Author: Kees J. Bot
5
6
echo
"
7
#include <minix/config.h>
8
$*
9
"
>/
tmp
/
tell.$$
10
exec
</
tmp
/
tell.$$
11
rm
/
tmp
/
tell.$$
12
13
exec
cc
-P -E
-