Mercurial > aewl
comparison Makefile @ 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 | 36cabfe408cd |
children | 48c820470858 |
comparison
equal
deleted
inserted
replaced
171:dac0793bf3f7 | 172:af781faa40d6 |
---|---|
19 | 19 |
20 .c.o: | 20 .c.o: |
21 @echo CC $< | 21 @echo CC $< |
22 @${CC} -c ${CFLAGS} $< | 22 @${CC} -c ${CFLAGS} $< |
23 | 23 |
24 ${OBJ}: dwm.h | 24 ${OBJ}: dwm.h config.h |
25 | |
26 config.h: | |
27 cp config.default.h config.h | |
25 | 28 |
26 dwm: ${OBJ} | 29 dwm: ${OBJ} |
27 @echo LD $@ | 30 @echo LD $@ |
28 @${CC} -o $@ ${OBJ} ${LDFLAGS} | 31 @${CC} -o $@ ${OBJ} ${LDFLAGS} |
29 | 32 |