summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f3a3e0c..657bb4f 100644
--- a/Makefile
+++ b/Makefile
@@ -6,16 +6,16 @@ endif
.PHONY: all clean install uninstall
-all: apty
+all: vtwrap
-apty: apty.c
+vtwrap: vtwrap.c
$(CC) -o $@ $< $(CFLAGS) $(EXTRA_CFLAGS)
clean:
- rm -f apty
+ rm -f vtwrap
install:
- install -m755 apty -t "$(DESTDIR)$(PREFIX)$(BINDIR)"
+ install -m755 vtwrap -t "$(DESTDIR)$(PREFIX)$(BINDIR)"
uninstall:
- rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/apty"
+ rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/vtwrap"