fix even more small issues such as duplicate lines and broken makefile

This commit is contained in:
speedie 2023-03-09 15:09:04 +01:00
parent 5126beae4a
commit 8d4aceb0c2
4 changed files with 18 additions and 21 deletions

View file

@ -59,7 +59,8 @@ compat:
ln -s $(DESTDIR)$(PREFIX)/bin/spmenu_run $(DESTDIR)$(PREFIX)/bin/dmenu_run ln -s $(DESTDIR)$(PREFIX)/bin/spmenu_run $(DESTDIR)$(PREFIX)/bin/dmenu_run
uninstall: uninstall:
$(DESTDIR)$(PREFIX)/bin/spmenu*\ rm -f \
$(DESTDIR)$(PREFIX)/bin/spmenu*
help: help:
@echo install: Installs spmenu. You may need to run this as root. @echo install: Installs spmenu. You may need to run this as root.

View file

@ -1,4 +1,4 @@
# spmenu # spmenu - dynamic menu
# See LICENSE file for copyright details. # See LICENSE file for copyright details.
# compiler # compiler

View file

@ -1,9 +1,5 @@
# spmenu # spmenu - dynamic menu
# See LICENSE file for copyright details. # See LICENSE file for copyright details.
# spmenu version # spmenu version
VERSION = 0.2.2 VERSION = 0.2.2
# includes and libs
INCS = -I$(X11INC) -I$(FREETYPEINC) $(BDINC) `pkg-config --cflags xft $(PANGOCONF) $(PANGOXFTCONF)`
LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) $(XRENDERLIBS) $(IMLIB2LIBS) $(BDLIBS) -lm `pkg-config --libs xft $(PANGOCONF) $(PANGOXFTCONF)`

View file

@ -1,4 +1,4 @@
# spmenu # spmenu - dynamic menu
# See LICENSE file for copyright details. # See LICENSE file for copyright details.
# Multi-monitor support. # Multi-monitor support.
@ -11,7 +11,7 @@ XINERAMATOGGLE = -DXINERAMA
# Comment these lines if you don't need it. # Comment these lines if you don't need it.
BDLIBS = -lfribidi BDLIBS = -lfribidi
BDINC = /usr/include/fribidi BDINC = /usr/include/fribidi
BDTOGGLE = -DFRIBIDI BDTOGGLE = -DRTL
# Pango # Pango
# Comment these lines if you don't need it. # Comment these lines if you don't need it.