diff options
| author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-05-09 15:20:37 -0500 | 
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-05-09 16:25:03 -0500 | 
| commit | d5a741c9b47f744428e75a76b9f5f6410acfbcf3 (patch) | |
| tree | 27934a7e8a1c536b3e723d788721dc57f4bc81ac /Makefile | |
| parent | 5d8084daa7812931b53d65312b2cebf9a8453e49 (diff) | |
add dist target
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 | 
1 files changed, 10 insertions, 1 deletions
| @@ -14,6 +14,15 @@ all: dwl  clean:  	rm -f dwl *.o *-protocol.h *-protocol.c +dist: clean +	mkdir -p dwl-$(VERSION) +	cp -R LICENSE* Makefile README.md generate-version.sh client.h\ +		config.def.h config.mk protocols dwl.1 dwl.c util.c util.h\ +		dwl-$(VERSION) +	echo "echo $(VERSION)" > dwl-$(VERSION)/generate-version.sh +	tar -caf dwl-$(VERSION).tar.gz dwl-$(VERSION) +	rm -rf dwl-$(VERSION) +  install: dwl  	install -Dm755 dwl $(DESTDIR)$(PREFIX)/bin/dwl  	install -Dm644 dwl.1 $(DESTDIR)$(MANDIR)/man1/dwl.1 @@ -21,7 +30,7 @@ install: dwl  uninstall:  	rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1 -.PHONY: all clean install uninstall +.PHONY: all clean dist install uninstall  # wayland-scanner is a tool which generates C headers and rigging for Wayland  # protocols, which are specified in XML. wlroots requires you to rig these up | 
