diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 17:35:30 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 17:35:30 +0100 |
commit | 7398f068c26037ef469cb569b375959810ab8dcb (patch) | |
tree | ddd4928674f02c0b89e6697782c23d3146de6776 /Makefile | |
parent | Removed numbers (diff) | |
download | dmenu-7398f068c26037ef469cb569b375959810ab8dcb.tar.gz dmenu-7398f068c26037ef469cb569b375959810ab8dcb.tar.bz2 dmenu-7398f068c26037ef469cb569b375959810ab8dcb.tar.xz dmenu-7398f068c26037ef469cb569b375959810ab8dcb.tar.zst dmenu-7398f068c26037ef469cb569b375959810ab8dcb.zip |
Update to version 5.0, new patches
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -6,7 +6,7 @@ include config.mk SRC = drw.c dmenu.c stest.c util.c OBJ = $(SRC:.c=.o) -all: config.h options dmenu stest +all: options dmenu stest options: @echo dmenu build options: @@ -17,9 +17,6 @@ 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 @@ -29,11 +26,11 @@ stest: stest.o $(CC) -o $@ stest.o $(LDFLAGS) clean: - rm -f config.h dmenu stest $(OBJ) dmenu-$(VERSION).tar.gz + 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\ + cp LICENSE Makefile README arg.h config.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) |