dmenu/Makefile

75 lines
2.1 KiB
Makefile
Raw Normal View History

2006-08-04 09:35:27 +02:00
# dmenu - dynamic menu
2008-03-22 15:52:00 +01:00
# See LICENSE file for copyright and license details.
2006-08-04 09:35:27 +02:00
include config.mk
SRC = drw.c dmenu.c stest.c util.c
OBJ = $(SRC:.c=.o)
2011-05-15 03:37:49 +02:00
2011-11-19 19:54:55 +01:00
all: options dmenu stest
2006-08-04 09:35:27 +02:00
options:
@echo dmenu build options:
@echo "CFLAGS = $(CFLAGS)"
@echo "LDFLAGS = $(LDFLAGS)"
@echo "CC = $(CC)"
2006-08-04 09:35:27 +02:00
2011-05-15 03:37:49 +02:00
.c.o:
@echo CC $<
@$(CC) -c $(CFLAGS) $<
2006-08-04 09:35:27 +02:00
config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@
$(OBJ): arg.h config.h config.mk drw.h
2011-05-15 03:37:49 +02:00
dmenu: dmenu.o drw.o util.o
2011-05-15 03:37:49 +02:00
@echo CC -o $@
@$(CC) -o $@ dmenu.o drw.o util.o $(LDFLAGS)
2011-06-13 20:28:30 +02:00
2011-11-19 19:54:55 +01:00
stest: stest.o
2011-06-13 20:28:30 +02:00
@echo CC -o $@
@$(CC) -o $@ stest.o $(LDFLAGS)
2011-05-15 03:37:49 +02:00
2006-08-04 09:35:27 +02:00
clean:
@echo cleaning
@rm -f dmenu stest $(OBJ) dmenu-$(VERSION).tar.gz
2006-08-04 09:35:27 +02:00
dist: clean
@echo creating dist tarball
@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)
2006-08-04 09:35:27 +02:00
install: all
@echo installing executables to $(DESTDIR)$(PREFIX)/bin
@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
@echo installing manual pages to $(DESTDIR)$(MANPREFIX)/man1
@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
2006-08-04 09:35:27 +02:00
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
@rm -f $(DESTDIR)$(PREFIX)/bin/stest
@echo removing manual page from $(DESTDIR)$(MANPREFIX)/man1
@rm -f $(DESTDIR)$(MANPREFIX)/man1/dmenu.1
@rm -f $(DESTDIR)$(MANPREFIX)/man1/stest.1
2006-08-04 09:35:27 +02:00
.PHONY: all options clean dist install uninstall