summaryrefslogtreecommitdiffstats
path: root/hacks/images/Makefile
diff options
context:
space:
mode:
authorSimon Rettberg2024-09-06 14:42:37 +0200
committerSimon Rettberg2024-09-06 14:42:37 +0200
commitbadef32037f52f79abc1f1440b786cd71afdf270 (patch)
tree412b792d4cab4a7a110db82fcf74fe8a1ac55ec1 /hacks/images/Makefile
parentDelete pre-6.00 files (diff)
downloadxscreensaver-master.tar.gz
xscreensaver-master.tar.xz
xscreensaver-master.zip
Diffstat (limited to 'hacks/images/Makefile')
-rw-r--r--hacks/images/Makefile63
1 files changed, 0 insertions, 63 deletions
diff --git a/hacks/images/Makefile b/hacks/images/Makefile
deleted file mode 100644
index 46aa4dc..0000000
--- a/hacks/images/Makefile
+++ /dev/null
@@ -1,63 +0,0 @@
-# hacks/images/Makefile.in --- xscreensaver, Copyright © 2018-2021 Jamie Zawinski.
-# the `../configure' script generates `hacks/images/Makefile' from this file.
-
-
-srcdir = .
-top_srcdir = ../..
-UTILS_SRC = $(top_srcdir)/utils
-RM = rm -f
-
-STAR = *
-TARFILES = Makefile \
- Makefile.in \
- $(STAR).png \
- $(STAR).gif \
- $(STAR)/$(STAR).png \
- $(STAR)/$(STAR).asm \
- $(STAR)/$(STAR).pdb \
- $(STAR)/$(STAR).pov \
- $(STAR)/$(STAR).txt \
-
-default: all
-
-all: _gen
-
-_gen:
- @\
- DIR="gen" ; \
- if ! [ -d "$$DIR" ]; then \
- echo mkdir "$$DIR" ; \
- mkdir "$$DIR" ; \
- fi ; \
- \
- for png in $$(find $(srcdir) -name \*.png); do \
- h="$${png%.png}"; \
- h="$${h##*/}"; \
- h="$$DIR/$${h}_png.h"; \
- if [ ! -f "$$h" -o "$$png" -nt "$$h" ] ; then \
- echo $(UTILS_SRC)/bin2c "$$png" "$$h"; \
- $(UTILS_SRC)/bin2c "$$png" "$$h"; \
- fi ; \
- done
-
-clean:
- $(RM) -r gen
-
-# Note: don't remove the generated Makefile. We include that in the tar file
-# so that OSX and Android can run 'make' in this directory without 'configure'.
-distclean:: clean
- -rm -f TAGS *~ "#"*
-
-list_tarfiles:
- @find $(TARFILES) -type f -print | sort
-
-install:
-install-program:
-install-man:
-install-strip:
-uninstall:
-uninstall-program:
-uninstall-man:
-depend:
-distdepend:
-tags: