summaryrefslogtreecommitdiffstats
path: root/util/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'util/Makefile.in')
-rw-r--r--util/Makefile.in37
1 files changed, 0 insertions, 37 deletions
diff --git a/util/Makefile.in b/util/Makefile.in
deleted file mode 100644
index ed8db01..0000000
--- a/util/Makefile.in
+++ /dev/null
@@ -1,37 +0,0 @@
-PREFIX = @prefix@
-
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-
-UTIL_PROGS = @RD_UTIL_PROGS@
-
-all:
-
-install: all
- for file in $(UTIL_PROGS) ; do \
- $(INSTALL) $$file $(PREFIX)/util; \
- done; \
- for file in *README* *.exp; do \
- $(INSTALL_DATA) $$file $(PREFIX)/util; \
- done; \
- cd lg; $(MAKE) -e install
-
-clean:
- @if [ -f lg/Makefile ] ; then \
- cd lg; $(MAKE) -e clean; \
- fi
-
-distclean: clean
- @if [ -f lg/Makefile ] ; then \
- cd lg; $(MAKE) -e distclean; \
- fi
- rm -f Makefile $(UTIL_PROGS) config.log config.status
-
-distdir:
- for file in Makefile.in configure.in *README* *.exp; do \
- $(INSTALL_DATA) $$file $(distdir); \
- done; \
- for file in configure $(UTIL_PROGS:=.in) ; do \
- $(INSTALL) $$file $(distdir); \
- done; \
- cd lg; $(MAKE) -e distdir