mirror of
https://github.com/davatorium/rofi.git
synced 2025-03-10 17:06:37 -04:00
fix arch linux build.
This commit is contained in:
parent
969b6a2921
commit
8910607591
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -1,4 +1,4 @@
|
||||||
CFLAGS?=-Wall -Os -std=c99
|
CFLAGS?=-Wall -Os
|
||||||
PREFIX?=$(DESTDIR)/usr
|
PREFIX?=$(DESTDIR)/usr
|
||||||
BINDIR?=$(PREFIX)/bin
|
BINDIR?=$(PREFIX)/bin
|
||||||
|
|
||||||
|
@ -18,10 +18,10 @@ endif
|
||||||
all: normal
|
all: normal
|
||||||
|
|
||||||
normal:
|
normal:
|
||||||
$(CC) -o simpleswitcher simpleswitcher.c $(CFLAGS) $(LDADD) $(LDFLAGS)
|
$(CC) -o simpleswitcher simpleswitcher.c -std=c99 $(CFLAGS) $(LDADD) $(LDFLAGS)
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
$(CC) -o simpleswitcher-debug simpleswitcher.c $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD)
|
$(CC) -o simpleswitcher-debug simpleswitcher.c -std=c99 $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD)
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
|
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
|
||||||
|
|
Loading…
Add table
Reference in a new issue