diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-08 22:48:22 -0400 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-08 22:48:22 -0400 |
commit | 98114362d9050e4e5f8db6a8978f7e3af2b0700d (patch) | |
tree | a02fc572726f23e1879ba29326cf313b4c9d82b0 /makefile | |
parent | 85942a60bdf9db479bf2edbd9146b87a53aad8b5 (diff) |
feat: make search bar gigantic, document GTK inspect.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6,7 +6,8 @@ # make uninstall ## C compiler -CC=gcc # tcc: much faster, gcc: more options. Also I don't know whether tcc has error messages/debug options. +CC=gcc # gcc: more options. Also I don't know whether tcc has error messages/debug options. +## CC=tcc # tcc: much faster ## Main file SRC=rose.c @@ -68,6 +69,9 @@ build: $(SRC) $(PLUGS) $(CONFIG) GIO_MODULE_DIR=/usr/lib/x86_64-linux-gnu/gio/modules/ $(CC) $(DEBUG) $(INCS) $(PLUGS) $(SRC) -o rose $(LIBS) $(ADBLOCK) +inspect: build + GTK_DEBUG=interactive ./rose + install: rose GIO_MODULE_DIR=/usr/lib/x86_64-linux-gnu/gio/modules/ cp -f rose /usr/bin |