'make clean' not working
问题 so I made a makefile for a c program. For some reason my 'clean' is not working. Here's a little bit of my makefile: CC=gcc FLAGS=-c -Wall -I. CLEANC=rm -rf *.o move.o: move.c $(CC) $(FLAGS) move.c /*Lot more codes like this^^^*/ clean: $(CLEANC) When I run 'make clean' in command prompt, I'm shown the following: rm -rf *.o process_begin: CreateProcess(NULL, rm -rf *.o, ...) failed. make (e=2): The system cannot find the file specified. makefile:116: recipe for target 'clean' failed make: ***