From a7738f4dc72c9445623cd6f5348d7a80d4e52690 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sun, 9 Oct 2022 17:57:05 -0400 Subject: initial commit, straight from apt-get source --- images/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 images/Makefile (limited to 'images/Makefile') 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 -- cgit