blob: 03709096bc0b24e01727000aac0cf5477d3ec7b5 (
plain)
1
2
3
4
5
6
7
8
9
|
strerror: strerror.c strerror.h
$(CC) $(CFLAGS) -o $@ strerror.c
strerror.h: errlist Makefile
printf '#ifndef STRERROR_H\n#define STRERROR_H 1\n\n' > $@
printf '#include <errno.h>\n\n' >> $@
printf 'const char *errlist[] = {\n' >> $@
awk '{printf("#ifdef %s\n\t[%s] = \"%s\",\n#endif\n", $$0, $$0, $$0);}' errlist >> $@
printf '};\n\n#endif\n' >> $@
|