From: John Hodge Date: Tue, 30 Aug 2011 15:14:49 +0000 (+0800) Subject: Fixed client makefile for clean X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Fopendispense2.git;a=commitdiff_plain;h=e1d9c86f2427258ff776cfe1581cff0022eb7743 Fixed client makefile for clean --- diff --git a/src/client/Makefile b/src/client/Makefile index 748819d..e490549 100644 --- a/src/client/Makefile +++ b/src/client/Makefile @@ -13,7 +13,7 @@ DEPFILES := $(OBJ:%.o=%.d) all: $(BIN) clean: - $(RM) $(BIN) $(OBJ) + $(RM) $(BIN) $(OBJ) $(DEPFILES) $(BIN): $(OBJ) $(CC) -o $(BIN) $(OBJ) $(LDFLAGS)