This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

make-problem; Wildcard delete does not work!


I have started using cygwin-make in a project and want to
create a "clean" target;


-----

RM = rm
SRCPATH = e:\web\html\nms\generalsetup


clean:
	$(RM) $(SRCPATH)\*.class
-----

The output I get on the command line is(win2000 cmd.exe):

-----
E:\web\html>make -f nms\generalsetup\makefile clean
rm e:\web\html\nms\generalsetup\*.class
rm: e:\web\html\nms\generalsetup\*.class: No such file or directory
make: *** [clean] Error 1
-----

The following works:

-----
	$(RM) $(SRCPATH)\GeneralSetupApplet.class
	$(RM) $(SRCPATH)\GeneralSetupApplet$$1.class
	$(RM) $(SRCPATH)\GeneralSetupAppletGUI.class
	$(RM) $(SRCPATH)\GeneralSetupAppletGUI$$1.class
	$(RM) $(SRCPATH)\GeneralSetupAppletStrings.class
-----

Has anybody any ideas?


Best regards,
Jørn Norheim


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]