From a4c62445d1f9e8b01a941e909c486cfd526a53ab Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sat, 8 May 2021 23:20:47 -0400 Subject: [PATCH] Add (un)install make targets --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 40af46e..a3f6c01 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ all: ${CC} mmenu.c -o mmenu -lXm -lXt -lcurl ${LDFLAGS} -std=c99 ${CFLAGS} -Wall \ -Wextra + +install: + cp mmenu /usr/local/bin/mmenu + +uninstall: + rm /usr/local/bin/mmenu -- 2.39.2