8df553e004
The Makefile used to suppress output (by using @), so this target made sense at the time. But the Makefile should be simple and make debugging with less abstractions or fancy printing. The Makefile was made verbose and doesn't hide the build output, so remove this target. Prompted by a question on the mailing list about the options target.
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# dmenu - dynamic menu
|
|
# See LICENSE file for copyright and license details.
|
|
|
|
include config.mk
|
|
|
|
SRC = drw.c dmenu.c stest.c util.c
|
|
OBJ = $(SRC:.c=.o)
|
|
|
|
all: dmenu stest
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) $<
|
|
|
|
config.h:
|
|
cp config.def.h $@
|
|
|
|
$(OBJ): arg.h config.h config.mk drw.h
|
|
|
|
dmenu: dmenu.o drw.o util.o
|
|
$(CC) -o $@ dmenu.o drw.o util.o $(LDFLAGS)
|
|
|
|
stest: stest.o
|
|
$(CC) -o $@ stest.o $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f dmenu stest $(OBJ) dmenu-$(VERSION).tar.gz
|
|
|
|
dist: clean
|
|
mkdir -p dmenu-$(VERSION)
|
|
cp LICENSE Makefile README arg.h config.def.h config.mk dmenu.1\
|
|
drw.h util.h dmenu_path dmenu_run stest.1 $(SRC)\
|
|
dmenu-$(VERSION)
|
|
tar -cf dmenu-$(VERSION).tar dmenu-$(VERSION)
|
|
gzip dmenu-$(VERSION).tar
|
|
rm -rf dmenu-$(VERSION)
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
cp -f dmenu dmenu_path dmenu_run stest $(DESTDIR)$(PREFIX)/bin
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_path
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_run
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/stest
|
|
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
|
|
sed "s/VERSION/$(VERSION)/g" < dmenu.1 > $(DESTDIR)$(MANPREFIX)/man1/dmenu.1
|
|
sed "s/VERSION/$(VERSION)/g" < stest.1 > $(DESTDIR)$(MANPREFIX)/man1/stest.1
|
|
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/dmenu.1
|
|
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/stest.1
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/dmenu\
|
|
$(DESTDIR)$(PREFIX)/bin/dmenu_path\
|
|
$(DESTDIR)$(PREFIX)/bin/dmenu_run\
|
|
$(DESTDIR)$(PREFIX)/bin/stest\
|
|
$(DESTDIR)$(MANPREFIX)/man1/dmenu.1\
|
|
$(DESTDIR)$(MANPREFIX)/man1/stest.1
|
|
|
|
.PHONY: all clean dist install uninstall
|