diff options
| author | Christian Eppler <c.eppler@linutonix.de> | 2013-05-13 16:22:27 +0200 |
|---|---|---|
| committer | Christian Eppler <c.eppler@linutonix.de> | 2013-05-13 16:22:27 +0200 |
| commit | 9e05689406c83ae3020ca32a6ec6387466209138 (patch) | |
| tree | 20a95a65df7e46b584c666ec74850df6d62b3045 /kconfig-frontends/libs/images/Makefile.am | |
| parent | cea5039322781f6085dd47954af5584ca3f78911 (diff) | |
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'kconfig-frontends/libs/images/Makefile.am')
| -rw-r--r-- | kconfig-frontends/libs/images/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kconfig-frontends/libs/images/Makefile.am b/kconfig-frontends/libs/images/Makefile.am new file mode 100644 index 0000000..c29b1ab --- /dev/null +++ b/kconfig-frontends/libs/images/Makefile.am @@ -0,0 +1,13 @@ +noinst_LIBRARIES = libkconfig-images.a + +libkconfig_images_a_SOURCES = images.c_orig +nodist_libkconfig_images_a_SOURCES = images.c +BUILT_SOURCES = images.c images.h +CLEANFILES = images.c images.h + +images.c: images.c_orig + $(AM_V_GEN)$(SED) -r -e 's/^static //' $< >$@ + +images.h: images.c_orig + $(AM_V_GEN)$(SED) -r -e '/^static (const char \*xpm_(.+)\[\]) = \{/!d; s//extern \1;/' \ + $< >$@ |
