Fork of dmenu with a few patches added and some changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB

18 years ago
# dmenu - dynamic menu
# See LICENSE file for copyright and license details.
18 years ago
include config.mk
13 years ago
SRC = dmenu.c draw.c
OBJ = ${SRC:.c=.o}
all: options dmenu
18 years ago
options:
@echo dmenu build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
13 years ago
.c.o:
@echo CC -c $<
@${CC} -c $< ${CFLAGS}
18 years ago
13 years ago
${OBJ}: config.mk
dmenu: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
18 years ago
clean:
@echo cleaning
13 years ago
@rm -f dmenu ${OBJ} dmenu-${VERSION}.tar.gz
18 years ago
dist: clean
@echo creating dist tarball
@mkdir -p dmenu-${VERSION}
13 years ago
@cp LICENSE Makefile README config.mk dmenu.1 draw.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION}
18 years ago
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
@gzip dmenu-${VERSION}.tar
@rm -rf dmenu-${VERSION}
install: all
@echo installing executables to ${DESTDIR}${PREFIX}/bin
18 years ago
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f dmenu dmenu_path dmenu_run ${DESTDIR}${PREFIX}/bin
18 years ago
@chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
@chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_path
17 years ago
@chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_run
18 years ago
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
@sed "s/VERSION/${VERSION}/g" < dmenu.1 > ${DESTDIR}${MANPREFIX}/man1/dmenu.1
18 years ago
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu.1
uninstall:
@echo removing executables from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu_path
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu_run
18 years ago
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
@rm -f ${DESTDIR}${MANPREFIX}/man1/dmenu.1
.PHONY: all options clean dist install uninstall