aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2022-11-05 21:21:36 -0500
committertlatorre <tlatorre@uchicago.edu>2022-11-05 21:21:36 -0500
commit51dbbaeaff14b3694f080538fc0de4924d7e26b1 (patch)
tree5513b3a1093bbdade0ffb12c172e9ba175ed36c3 /Makefile
parent0a406cfbee9cae0c00ca097704f06185ed4b0a13 (diff)
downloadmoji-51dbbaeaff14b3694f080538fc0de4924d7e26b1.tar.gz
moji-51dbbaeaff14b3694f080538fc0de4924d7e26b1.tar.bz2
moji-51dbbaeaff14b3694f080538fc0de4924d7e26b1.zip
add logo, desktop entry, make install, and .gitignore
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 158dbb6..3dd2461 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,14 @@ all: vito
CFLAGS=$(shell pkg-config --cflags gtk4) -O0 -g -Wall
LDLIBS=$(shell pkg-config --libs gtk4)
+HOME=$(shell echo ~)
vito: vito.c
gcc ${CFLAGS} -o vito vito.c ${LDLIBS}
+install: vito
+ mkdir -p ${HOME}/.config/autostart
+ cp vito.desktop ${HOME}/.config/autostart
+
clean:
rm vito