about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-07-19 21:34:51 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-07-19 21:38:42 +0200
commitd6742ef8a6ce03f28ee9431ef51901ef712ffd76 (patch)
treec348e660db46bdb65be92ea70fef3477dbeed7ad /Makefile
parentconfig.mk: add FREETYPELIBS and FREETYPEINC (diff)
downloaddmenu-d6742ef8a6ce03f28ee9431ef51901ef712ffd76.tar.gz
dmenu-d6742ef8a6ce03f28ee9431ef51901ef712ffd76.tar.bz2
dmenu-d6742ef8a6ce03f28ee9431ef51901ef712ffd76.zip
stest: get rid of getopt, use suckless arg.h
... also some style improvements.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4a412ee..8f14a8c 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ config.h:
 	@echo creating $@ from config.def.h
 	@cp config.def.h $@
 
-${OBJ}: config.h config.mk drw.h
+${OBJ}: arg.h config.h config.mk drw.h
 
 dmenu: dmenu.o drw.o util.o
 	@echo CC -o $@
@@ -39,8 +39,8 @@ clean:
 dist: clean
 	@echo creating dist tarball
 	@mkdir -p dmenu-${VERSION}
-	@cp LICENSE Makefile README config.mk dmenu.1 drw.h util.h dmenu_path \
-		dmenu_run stest.1 ${SRC} dmenu-${VERSION}
+	@cp LICENSE Makefile README arg.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}