diff options
| author | Anselm R. Garbe <[email protected]> | 2007-02-05 11:10:41 +0100 |
|---|---|---|
| committer | Anselm R. Garbe <[email protected]> | 2007-02-05 11:10:41 +0100 |
| commit | dbccf6fbff01dce1e4349ab8ccff4357e360da4c (patch) | |
| tree | 948b3c09ea4f45feda07ee521b6aa33cebb93a58 | |
| parent | Added tag 2.1 for changeset 7656557298c9 (diff) | |
| download | dmenu-dbccf6fbff01dce1e4349ab8ccff4357e360da4c.tar.gz dmenu-dbccf6fbff01dce1e4349ab8ccff4357e360da4c.tar.bz2 dmenu-dbccf6fbff01dce1e4349ab8ccff4357e360da4c.zip | |
got rid of LD, inspired by JGs patch to wmii
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | config.mk | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile index fec5da4..d86c111 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,6 @@ options: @echo "CFLAGS = ${CFLAGS}" @echo "LDFLAGS = ${LDFLAGS}" @echo "CC = ${CC}" - @echo "LD = ${LD}" .c.o: @echo CC $< @@ -22,8 +21,8 @@ options: ${OBJ}: dmenu.h config.mk dmenu: ${OBJ} - @echo LD $@ - @${LD} -o $@ ${OBJ} ${LDFLAGS} + @echo CC -o $@ + @${CC} -o $@ ${OBJ} ${LDFLAGS} @strip $@ clean: diff --git a/config.mk b/config.mk index 7860a39..cc328ea 100644 --- a/config.mk +++ b/config.mk @@ -1,5 +1,5 @@ # dmenu version -VERSION = 2.1 +VERSION = 2.2 # Customize below to fit your system @@ -27,4 +27,3 @@ LDFLAGS = ${LIBS} # compiler and linker CC = cc -LD = ${CC} |