mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Fix building ubuntu
This commit is contained in:
parent
24068079f2
commit
6d0f4a96f8
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -18,10 +18,10 @@ endif
|
|||
all: normal
|
||||
|
||||
normal:
|
||||
$(CC) $(CFLAGS) $(LDADD) $(LDFLAGS) -o simpleswitcher simpleswitcher.c
|
||||
$(CC) -o simpleswitcher simpleswitcher.c $(CFLAGS) $(LDADD) $(LDFLAGS)
|
||||
|
||||
debug:
|
||||
$(CC) $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD) -o simpleswitcher-debug simpleswitcher.c
|
||||
$(CC) -o simpleswitcher-debug simpleswitcher.c $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD)
|
||||
|
||||
install:
|
||||
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
|
||||
|
|
Loading…
Reference in a new issue