Browse Source

Replace bash compatible syntax.

Alessio Treglia 12 years ago
parent
commit
2d8b0cb105
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Makefile

+ 2
- 2
Makefile View File

@@ -27,7 +27,7 @@ $(PROG): $(OBJS)
27 27
 -include $(OBJS:.o=.d)
28 28
 
29 29
 clean:
30
-	$(Q)echo "  RM	$(PROG) $(OBJS:.o=.{o,d})"
31
-	$(Q)$(RM) $(PROG) $(OBJS:.o=.{o,d}) *~
30
+	$(Q)echo "  RM	$(PROG) $(OBJS:.o=.o) $(OBJS:.o=.d)"
31
+	$(Q)$(RM) $(PROG) $(OBJS:.o=.o) $(OBJS:.o=.d) *~
32 32
 
33 33
 distclean: clean

Loading…
Cancel
Save