1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-03 15:34:54 -05:00
rofi/Makefile
2012-09-12 23:40:56 +10:00

18 lines
433 B
Makefile

CFLAGS?=-Wall -O2
LDADD?=`pkg-config --cflags --libs x11 xinerama xft`
PREFIX?=$(DESTDIR)/usr
BINDIR?=$(PREFIX)/bin
all: normal
normal:
$(CC) $(CFLAGS) $(LDADD) $(LDFLAGS) -o simpleswitcher simpleswitcher.c
debug:
$(CC) $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD) -o simpleswitcher-debug simpleswitcher.c
install:
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
clean:
rm -f simpleswitcher simpleswitcher-debug