Mercurial > gbwm
view Makefile @ 2:3ad7c3ab949e default tip
improve config and set default root cursor
author | Atarwn Gard <a@qwa.su> |
---|---|
date | Sat, 11 Oct 2025 10:15:35 +0500 |
parents | ee781c291790 |
children |
line wrap: on
line source
TARGET = gbwm CC ?= cc CFLAGS ?= -O2 -Wall PREFIX ?= /usr/local $(TARGET): $(CC) $(CFLAGS) gbwm.c -o $@ -lX11 -lXft -I/usr/include/freetype2/ .PHONY: install uninstall clean install: $(TARGET) install -Dm755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET) uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET) clean: rm -f $(TARGET)