projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed a bug so wxLC_VRULES works by itself.
[wxWidgets.git]
/
src
/
makeprog.g95
diff --git
a/src/makeprog.g95
b/src/makeprog.g95
index 391881439cbb9c2f580e397865f56da319d9f0ab..2200451b60d7d68a9cfd050759802f332bcfc26c 100644
(file)
--- a/
src/makeprog.g95
+++ b/
src/makeprog.g95
@@
-7,7
+7,7
@@
#
# Include file for Cygwin/Mingw32 samples
#
# Include file for Cygwin/Mingw32 samples
-WXDIR = $(WXWIN)
+
#
WXDIR = $(WXWIN)
include $(WXDIR)/src/makeg95.env
include $(WXDIR)/src/makeg95.env
@@
-20,4
+20,11
@@
$(TARGET)_resources.o: $(TARGET).rc
$(RESCOMP) $(RCINPUTSWITCH) $(TARGET).rc $(RCOUTPUTSWITCH) $(TARGET)_resources.o $(RESFLAGS)
clean:
$(RESCOMP) $(RCINPUTSWITCH) $(TARGET).rc $(RCOUTPUTSWITCH) $(TARGET)_resources.o $(RESFLAGS)
clean:
- rm -f $(OBJECTS) $(TARGET)_resources.o $(TARGET).exe core *.rsc *.res
+ -$(RM) *.o
+ -$(RM) $(TARGET)_resources.o
+ -$(RM) core
+ -$(RM) *.rsc
+ -$(RM) *.res
+
+cleanall: clean
+ -$(RM) $(TARGET).exe