3434 * the config symbols are rebuilt.
3535 *
3636 * So if the user changes his CONFIG_HIS_DRIVER option, only the objects
37- * which depend on "include/config/his/driver.h " will be rebuilt,
37+ * which depend on "include/config/HIS_DRIVER " will be rebuilt,
3838 * so most likely only his driver ;-)
3939 *
4040 * The idea above dates, by the way, back to Michael E Chastain, AFAIK.
7474 *
7575 * and then basically copies the .<target>.d file to stdout, in the
7676 * process filtering out the dependency on autoconf.h and adding
77- * dependencies on include/config/my/option.h for every
77+ * dependencies on include/config/MY_OPTION for every
7878 * CONFIG_MY_OPTION encountered in any of the prerequisites.
7979 *
8080 * We don't even try to really parse the header files, but
@@ -107,8 +107,8 @@ static void usage(void)
107107
108108/*
109109 * In the intended usage of this program, the stdout is redirected to .*.cmd
110- * files. The return value of printf() and putchar() must be checked to catch
111- * any error, e.g. "No space left on device".
110+ * files. The return value of printf() must be checked to catch any error,
111+ * e.g. "No space left on device".
112112 */
113113static void xprintf (const char * format , ...)
114114{
@@ -124,38 +124,6 @@ static void xprintf(const char *format, ...)
124124 va_end (ap );
125125}
126126
127- static void xputchar (int c )
128- {
129- int ret ;
130-
131- ret = putchar (c );
132- if (ret == EOF ) {
133- perror ("fixdep" );
134- exit (1 );
135- }
136- }
137-
138- /*
139- * Print out a dependency path from a symbol name
140- */
141- static void print_dep (const char * m , int slen , const char * dir )
142- {
143- int c , prev_c = '/' , i ;
144-
145- xprintf (" $(wildcard %s/" , dir );
146- for (i = 0 ; i < slen ; i ++ ) {
147- c = m [i ];
148- if (c == '_' )
149- c = '/' ;
150- else
151- c = tolower (c );
152- if (c != '/' || prev_c != '/' )
153- xputchar (c );
154- prev_c = c ;
155- }
156- xprintf (".h) \\\n" );
157- }
158-
159127struct item {
160128 struct item * next ;
161129 unsigned int len ;
@@ -220,7 +188,8 @@ static void use_config(const char *m, int slen)
220188 return ;
221189
222190 define_config (m , slen , hash );
223- print_dep (m , slen , "include/config" );
191+ /* Print out a dependency path from a symbol name. */
192+ xprintf (" $(wildcard include/config/%.*s) \\\n" , slen , m );
224193}
225194
226195/* test if s ends in sub */
0 commit comments