summaryrefslogtreecommitdiff
path: root/build/Makefile.data
diff options
context:
space:
mode:
Diffstat (limited to 'build/Makefile.data')
-rw-r--r--build/Makefile.data28
1 files changed, 0 insertions, 28 deletions
diff --git a/build/Makefile.data b/build/Makefile.data
deleted file mode 100644
index 4e2b522b..00000000
--- a/build/Makefile.data
+++ /dev/null
@@ -1,28 +0,0 @@
-include build/Makefile.incl
-
-dir = data
-
-files = rc3
-
-srcdir := $(srcdir)/$(dir)
-dir := $(DESTDIR)$(rcdir)
-sources := $(addprefix $(srcdir)/,$(files))
-
-all:
-
-install:
- $(INSTALL) -d $(dir)
- $(INSTALL) -m 644 $(sources) $(dir)
-
-uninstall:
- for i in $(files); do \
- $(RM) $(dir)/$$i; \
- done
- -rmdir $(dir)
-
-clean:
- $(RM) $(srcdir)/*\~
-
-distclean:
-
-.PHONY: all install uninstall clean distclean