rofi/Makefile

19 lines
433 B
Makefile
Raw Normal View History

2012-11-07 04:16:59 +00:00
CFLAGS?=-Wall -Os
2012-09-12 13:40:56 +00:00
LDADD?=`pkg-config --cflags --libs x11 xinerama xft`
2012-08-27 10:24:30 +00:00
PREFIX?=$(DESTDIR)/usr
BINDIR?=$(PREFIX)/bin
2012-06-29 17:10:13 +00: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 10:24:30 +00:00
install:
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
2012-06-29 17:10:13 +00:00
clean:
rm -f simpleswitcher simpleswitcher-debug