rosenrot/makefile
Lucien Cartier-Tilet d69bb7d05a
Use environment variables for CC and PREFIX
Pull request #3 can break the compilation process. In my case, cc
points to gcc which cannot handle the `-G_DISABLE_DEPRECATED` and the
`-GDK_PIXBUF_DISABLE_DEPRECATED` command-line options whereas clang
works like a charm.

This commit allows the user to use whichever compiler they want
through environment variables such as:
    CC=clang make all

It also allows the user to define their preferred prefix with
environment variables:
    PREFIX=$HOME/.local/bin make install
2022-05-14 20:16:26 +02:00

41 lines
1.1 KiB
Makefile

# -*- indent-tabs-mode: t -*-
CC ?= cc
CFLAGS = `pkg-config --cflags gtk4 webkit2gtk-5.0 x11`
LIBS = `pkg-config --libs gtk4 webkit2gtk-5.0 x11`
OPTIONS = -Dgtk_doc=false -Dintrospection=false \
-DG_DISABLE_CAST_CHECKS \
-Dcloudproviders=false \
-DGTK_DISABLE_DEPRECATED \
-GDK_PIXBUF_DISABLE_DEPRECATED \
-G_DISABLE_DEPRECATED -DENABLE_GLES2=ON \
-DENABLE_GEOLOCATION=OFF -DENABLE_PLUGIN_PROCESS_GTK2=OFF \
-DPORT=GTK \
-Dforce_posix_threads=true \
-Dman=false \
-Dxinerama=false \
-Dcolord=false \
-Db_coverage=false \
-Ddebug=false
PREFIX ?= /usr/local
all:
$(CC) -fPIC -O3 -o rose *.c $(CFLAGS) $(LIBS) $(OPTIONS)
strip ./rose
install: all
cp -f ./rose $(PREFIX)/bin/rose
cp -f ./scripts/dmenu_rose.sh $(PREFIX)/bin/dmenu_rose
uninstall:
rm -f $(PREFIX)/bin/rose $(PREFIX)/bin/dmenu_rose
clean:
rm -f rose compile_flags.txt
flags:
echo $(CFLAGS) | sed 's/ /\n/g' > compile_flags.txt
.PHONY: all clean install uninstall flags
.SILENT: all clean install uninstall flags