From 5d0383d0f874348cc3e0f363bd5d42aa273a4551 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sun, 24 Apr 2022 22:27:42 +0530 Subject: Patched Dmenu --- Makefile | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 74086cd..244961a 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,3 @@ -# . . . -# | | | . -# ,-. ,-. |-. ,-. . ,-. | ,_, ,-. ,-. |-. ,-,-. . |- ,_, -# | | ,-| | | | | |-' | / `-. | | | | | | | | / -# `-| `-^ ^-' ' ' `-' `' '"' `-' `-' ' ' ' ' ' ' `' '"' -# ,| -# `' -# GITHUB:https://github.com/gabrielzschmitz -# INSTAGRAM:https://www.instagram.com/gabrielz.schmitz/ -# DOTFILES:https://github.com/gabrielzschmitz/dotfiles/ # dmenu - dynamic menu # See LICENSE file for copyright and license details. @@ -27,6 +17,9 @@ options: .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 @@ -36,11 +29,11 @@ stest: stest.o $(CC) -o $@ stest.o $(LDFLAGS) clean: - rm -f dmenu stest $(OBJ) dmenu-$(VERSION).tar.gz *.orig *.rej + rm -f dmenu stest $(OBJ) dmenu-$(VERSION).tar.gz *.rej *.orig dist: clean mkdir -p dmenu-$(VERSION) - cp LICENSE Makefile README arg.h config.mk dmenu.1\ + 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) -- cgit v1.2.3-59-g8ed1b