aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:19:01 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:19:01 +0200
commitb1669b5c48f71c9a7a919dbf09a1af527c62f69a (patch)
treef94f1018357afe5abef9cde46a80d16a9676010f /Makefile
parent586f66331d1105be03c42e6faeae1672b974a98a (diff)
removed unnecessary sel stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index b38889b..e324e5b 100644
--- a/Makefile
+++ b/Makefile
@@ -7,12 +7,10 @@ WMSRC = bar.c client.c cmd.c draw.c event.c key.c util.c wm.c
WMOBJ = ${WMSRC:.c=.o}
MENSRC = menu.c draw.c util.c
MENOBJ = ${MENSRC:.c=.o}
-SELSRC = gridsel.c util.c
-SELOBJ = ${SELSRC:.c=.o}
MAN1 = gridwm.1 gridmenu.1
-BIN = gridwm gridmenu gridsel
+BIN = gridwm gridmenu
-all: config gridwm gridmenu gridsel
+all: config gridwm gridmenu
@echo finished
config:
@@ -36,10 +34,6 @@ gridwm: ${WMOBJ}
@echo LD $@
@${CC} -o $@ ${WMOBJ} ${LDFLAGS}
-gridsel: ${SELOBJ}
- @echo LD $@
- @${CC} -o $@ ${SELOBJ} ${LDFLAGS}
-
clean:
rm -f gridwm gridmenu *.o core