add dirname

This commit is contained in:
Connor Lane Smith
2011-05-24 21:39:20 +01:00
parent 4fc1ad22ad
commit c367d4d05f
5 changed files with 41 additions and 8 deletions

View File

@@ -1,7 +1,8 @@
include config.mk
LIB = util/enmasse.o util/eprintf.o
SRC = basename.c cat.c date.c echo.c false.c grep.c ln.c pwd.c rm.c sleep.c tee.c touch.c true.c wc.c
SRC = basename.c cat.c date.c dirname.c echo.c false.c grep.c ln.c pwd.c rm.c \
sleep.c tee.c touch.c true.c wc.c
OBJ = $(SRC:.c=.o) $(LIB)
BIN = $(SRC:.c=)
MAN = $(SRC:.c=.1)