summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9f68e18..e091f8e 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ LDFLAGS += -L${X11LIB} -lX11 ${XINERAMALIBS}
CFLAGS += `pkg-config --cflags xft pango pangoxft`
LDFLAGS += `pkg-config --libs xft pango pangoxft`
-VERSION = 6.1
+VERSION = 6.2
SRC = dwm.c drw.c util.c
OBJ = ${SRC:.c=.o}
@@ -28,7 +28,7 @@ OBJ = ${SRC:.c=.o}
dwm: ${OBJ}
@echo CC -o $@
echo $(CFLAGS)
- ${CC} -o $@ ${OBJ} ${LDFLAGS}
+ ${CC} -o $@-pixel ${OBJ} ${LDFLAGS}
kconfig2h:
$(CC) -c kconf2h/kconf2h_parser.c
@@ -39,6 +39,6 @@ menuconfig: kconfig2h
kconf2h/kconf2h .config kconfig.h
clean:
- rm -rf dwm
+ rm -rf dwm-pixel
rm -rf *.o