aewl
changeset 172:af781faa40d6
implemented the idea presented by Sander for dwm target
author | arg@10ksloc.org |
---|---|
date | Wed, 02 Aug 2006 17:49:21 +0200 |
parents | dac0793bf3f7 |
children | 1db04019684e |
files | Makefile README |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line diff
1.1 --- a/Makefile Wed Aug 02 17:19:22 2006 +0200 1.2 +++ b/Makefile Wed Aug 02 17:49:21 2006 +0200 1.3 @@ -21,7 +21,10 @@ 1.4 @echo CC $< 1.5 @${CC} -c ${CFLAGS} $< 1.6 1.7 -${OBJ}: dwm.h 1.8 +${OBJ}: dwm.h config.h 1.9 + 1.10 +config.h: 1.11 + cp config.default.h config.h 1.12 1.13 dwm: ${OBJ} 1.14 @echo LD $@
2.1 --- a/README Wed Aug 02 17:19:22 2006 +0200 2.2 +++ b/README Wed Aug 02 17:49:21 2006 +0200 2.3 @@ -13,10 +13,9 @@ 2.4 Edit config.mk to match your local setup (dwm is installed into 2.5 the /usr/local namespace by default). 2.6 2.7 -Afterwards enter the following commands to build and install dwm (if 2.8 +Afterwards enter the following command to build and install dwm (if 2.9 necessary as root): 2.10 2.11 - cp config.default.h config.h 2.12 make clean install 2.13 2.14