summaryrefslogtreecommitdiff
path: root/build/Makefile.data
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-13 21:17:02 +0000
committerDana Jansens <danakj@orodu.net>2003-04-13 21:17:02 +0000
commitdfc9680e333c3a10fedea103136b03c1ebc1ab2b (patch)
treef1db27e2907f46e67270fd1041a4ac0cbcbfde8e /build/Makefile.data
parent1e1ee706501584dab74dde04333c712ccd0d7c91 (diff)
back to automake
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