1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/Makefile

19 lines
433 B
Makefile
Raw Normal View History

2012-11-07 14:16:59 +10:00
CFLAGS?=-Wall -Os
2012-09-12 23:40:56 +10:00
LDADD?=`pkg-config --cflags --libs x11 xinerama xft`
2012-08-27 20:24:30 +10:00
PREFIX?=$(DESTDIR)/usr
BINDIR?=$(PREFIX)/bin
2012-06-30 03:10:13 +10:00
all: normal
normal:
$(CC) $(CFLAGS) $(LDADD) $(LDFLAGS) -o simpleswitcher simpleswitcher.c
debug:
$(CC) $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD) -o simpleswitcher-debug simpleswitcher.c
2012-08-27 20:24:30 +10:00
install:
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
2012-06-30 03:10:13 +10:00
clean:
rm -f simpleswitcher simpleswitcher-debug