diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 09:33:03 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 09:33:03 +0000 |
| commit | f6a09c67c70e163fb1704b375c42e07c6ae9d1b8 (patch) | |
| tree | 816e672e64deade3651ee92d85eae1decc1d485a | |
| parent | ce907176c6221351dad7974a5f2627d2a92afadf (diff) | |
| download | rockbox-f6a09c67c70e163fb1704b375c42e07c6ae9d1b8.zip rockbox-f6a09c67c70e163fb1704b375c42e07c6ae9d1b8.tar.gz rockbox-f6a09c67c70e163fb1704b375c42e07c6ae9d1b8.tar.bz2 rockbox-f6a09c67c70e163fb1704b375c42e07c6ae9d1b8.tar.xz | |
corrected clean target
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@685 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 0e9c86b..a95481c 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -49,8 +49,8 @@ $(OBJDIR)/%.o: %.c $(CC) $(CFLAGS) -c $< -o $@ clean: - -$(RM) -f $(OBJDIR)/$(OBJS) *~ $(OUTPUT) - -$(RM) -r $(DEPS) + rm -f $(OBJS) $(OUTPUT) + rm -rf $(OBJDIR)/$(DEPS) # Special targets $(OBJDIR)/thread.o: thread.c thread.h |