aboutsummaryrefslogtreecommitdiff
path: root/images/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'images/Makefile')
-rw-r--r--images/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/images/Makefile b/images/Makefile
new file mode 100644
index 0000000..7bbed3a
--- /dev/null
+++ b/images/Makefile
@@ -0,0 +1,27 @@
+# Part 0
+# load common stuff
+TOPDIR = ..
+include $(TOPDIR)/Makefile.common
+
+# backslashify slashes to avoid problems with sed
+BPREFIX := $(subst /,\/,$(PREFIX))
+
+CFG := $(wildcard *.cfg)
+RES := $(CFG:%.cfg=%)
+
+all: $(RES)
+
+%: %.cfg
+ sed 's/PREFIX/$(BPREFIX)/g' < $< > $@
+
+clean:
+ $(RM) $(RES) *~
+
+install:
+ install -d $(PREFIX)/share/fbxkb
+# install -m 644 $(RES) $(PREFIX)/share/fbxkb
+ install -d $(PREFIX)/share/fbxkb/images
+ install -m 644 *.png $(PREFIX)/share/fbxkb/images/
+
+uninstall:
+ rm -rf $(PREFIX)/share/fbxkb
bgstack15