diff options
| author | Louis Burda <quent.burda@gmail.com> | 2024-03-21 23:07:08 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2024-03-21 23:07:08 +0100 |
| commit | 50c6cf07c71367828f8c32eba4427071a3fb24f1 (patch) | |
| tree | 112d8ff6217dbbcd3f491a7b627aa73d710de956 /Makefile | |
| parent | 99df364525c9a6119769f01f43c7836890f75ff1 (diff) | |
| download | vtwrap-master.tar.gz vtwrap-master.zip | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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" |
