Remove wildcard

This commit is contained in:
Arian Karami 2023-03-26 18:39:17 +02:00
parent 13e398dfd7
commit 39046d0ef5
1 changed files with 6 additions and 6 deletions

View File

@ -23,14 +23,14 @@ $(OBJDIR)/%.o: %.c $(DEPS)
$(CC) $(CFLAGS) -o $@ -c $<
clean:
$(RM) $(wildcard $(OBJ))
$(RM) $(wildcard $(INCDIR)/*~)
$(RM) $(wildcard *~)
$(RMDIR) $(wildcard $(OBJDIR))
$(RM) $(OBJ)
$(RM) $(INCDIR)/*~
$(RM) *~
$(RMDIR) $(OBJDIR)
fclean: clean
$(RM) $(wildcard $(BUILDDIR)/*)
$(RMDIR) $(wildcard $(BUILDDIR))
$(RM) $(BUILDDIR)/*
$(RMDIR) $(BUILDDIR)
install: all
$(MKDIR) $(DESTDIR)$(PREFIX)/bin