aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2010-06-30 01:36:15 +0100
committerConnor Lane Smith <cls@lubutu.com>2010-06-30 01:36:15 +0100
commit26b9f3de0ffe471e5335b07454147457e373c037 (patch)
tree5480fedbc318d490a4e90c2104d6ba8c26258698 /Makefile
parent7afd296c40a2e8af9477add1c3d02a7c4b444747 (diff)
downloaddmenu-26b9f3de0ffe471e5335b07454147457e373c037.tar.gz
dmenu-26b9f3de0ffe471e5335b07454147457e373c037.tar.bz2
dmenu-26b9f3de0ffe471e5335b07454147457e373c037.zip
libdraw now has own repo
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 90f178b..0f29652 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ options:
@echo CC $<
@${CC} -c ${CFLAGS} $<
-${OBJ}: config.h config.mk draw/libdraw.a
+${OBJ}: config.h config.mk
config.h:
@echo creating $@ from config.def.h
@@ -28,18 +28,14 @@ config.h:
@echo CC -o $@
@${CC} -o $@ $< ${LDFLAGS}
-draw/libdraw.a:
- @cd draw && make
-
clean:
@echo cleaning
@rm -f dinput dmenu ${OBJ} dmenu-${VERSION}.tar.gz
- @cd draw && make clean
dist: clean
@echo creating dist tarball
@mkdir -p dmenu-${VERSION}
- @cp -R LICENSE Makefile README config.mk dmenu.1 config.def.h dmenu_path dmenu_run draw ${SRC} dmenu-${VERSION}
+ @cp -R LICENSE Makefile README config.mk dmenu.1 config.def.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION}
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
@gzip dmenu-${VERSION}.tar
@rm -rf dmenu-${VERSION}