aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc/miniterm/Makefile
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-07-31 16:15:53 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-08-20 15:34:24 +0100
commit337452d04dbf8389580ed2b60838c2264e64848c (patch)
tree643c67717c12c0f164787aa1c81a1ee3341bc4d0 /tools/misc/miniterm/Makefile
parent4b07ff449a08de04ccebd680516a262148f177b9 (diff)
downloadxen-337452d04dbf8389580ed2b60838c2264e64848c.tar.gz
xen-337452d04dbf8389580ed2b60838c2264e64848c.tar.bz2
xen-337452d04dbf8389580ed2b60838c2264e64848c.zip
tools: remove miniterm
It has been disabled by default since 2008 (9bb7f7e2aca4). Back then Ian J asserted it was useful to keep them in the tree in source form. I don't think this is true anymore. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Matt Wilson <msw@amazon.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/misc/miniterm/Makefile')
-rw-r--r--tools/misc/miniterm/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/misc/miniterm/Makefile b/tools/misc/miniterm/Makefile
deleted file mode 100644
index 5c5f561393..0000000000
--- a/tools/misc/miniterm/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-XEN_ROOT:=$(CURDIR)/../../..
-include $(XEN_ROOT)/tools/Rules.mk
-
-TARGET = miniterm
-
-.PHONY: all
-all: $(TARGET)
-
-.PHONY: install
-install: all
- $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
- $(INSTALL_PROG) $(TARGET) $(DESTDIR)$(BINDIR)
-
-.PHONY: install-recurse
- : No sense in installing miniterm on the Xen box.
-
-.PHONY: clean
-clean:
- $(RM) *.o $(TARGET) *~
-
-$(TARGET): $(TARGET).c
- $(HOSTCC) $(HOSTCFLAGS) -o $@ $<