Skip to content
Snippets Groups Projects
Commit 0f4498a0 authored by deuce's avatar deuce
Browse files

Use $(DIRSEP) not $(SLASH)

parent beb672cf
Branches
Tags
No related merge requests found
......@@ -8,9 +8,9 @@ $(EXEODIR):
$(QUIET)$(IFNOTEXIST) mkdir $(EXEODIR)
clean:
@echo Deleting $(OBJODIR)$(SLASH)
$(QUIET)$(DELETE) $(OBJODIR)$(SLASH)*
@echo Deleting $(LIBODIR)$(SLASH)
$(QUIET)$(DELETE) $(LIBODIR)$(SLASH)*
@echo Deleting $(EXEODIR)$(SLASH)
$(QUIET)$(DELETE) $(EXEODIR)$(SLASH)*
@echo Deleting $(OBJODIR)$(DIRSEP)
$(QUIET)$(DELETE) $(OBJODIR)$(DIRSEP)*
@echo Deleting $(LIBODIR)$(DIRSEP)
$(QUIET)$(DELETE) $(LIBODIR)$(DIRSEP)*
@echo Deleting $(EXEODIR)$(DIRSEP)
$(QUIET)$(DELETE) $(EXEODIR)$(DIRSEP)*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment