update Copyright info for VersionVDProj and update Makefile.am
This commit is contained in:
parent
0983950115
commit
28d96636a1
@ -70,8 +70,8 @@ vpath %.cpp $(PLATFORMDEPENDENTSOURCEDIR) $(PLATFORMINDEPENDENTSOURCEDIR)
|
|||||||
|
|
||||||
$(MODULE_NAME).$(MODULE_EXT): $(OBJDIR) devenv
|
$(MODULE_NAME).$(MODULE_EXT): $(OBJDIR) devenv
|
||||||
@echo [======== Building Solution $(SFILES) ========]
|
@echo [======== Building Solution $(SFILES) ========]
|
||||||
cp -f ../micasacache.def .
|
# cp -f ../micasacache.def .
|
||||||
cp -f ../c_micasacache.vcproj .
|
# cp -f ../c_micasacache.vcproj .
|
||||||
"$(VSINSTALLDIR)/devenv" /rebuild $(TARGET_CFG) /project $(PROJECT_NAME) $(SFILES) /out build.log
|
"$(VSINSTALLDIR)/devenv" /rebuild $(TARGET_CFG) /project $(PROJECT_NAME) $(SFILES) /out build.log
|
||||||
cp -f ../$(TARGET_CFG)/$(MODULE_NAME).$(MODULE_EXT) $(CASALIBDIR)/$(TARGET_CFG)
|
cp -f ../$(TARGET_CFG)/$(MODULE_NAME).$(MODULE_EXT) $(CASALIBDIR)/$(TARGET_CFG)
|
||||||
|
|
||||||
@ -97,7 +97,8 @@ uninstall-local:
|
|||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
||||||
rm -f build.log
|
if [ -d ../$(TARGET_CFG) ]; then rm -rf ../$(TARGET_CFG); fi
|
||||||
|
if [ -f build.log ]; then rm -rf build.log; fi
|
||||||
|
|
||||||
distclean-local:
|
distclean-local:
|
||||||
|
|
||||||
|
@ -70,8 +70,8 @@ vpath %.cpp $(PLATFORMDEPENDENTSOURCEDIR) $(PLATFORMINDEPENDENTSOURCEDIR)
|
|||||||
|
|
||||||
$(MODULE_NAME).$(MODULE_EXT): $(OBJDIR) devenv
|
$(MODULE_NAME).$(MODULE_EXT): $(OBJDIR) devenv
|
||||||
@echo [======== Building Solution $(SFILES) ========]
|
@echo [======== Building Solution $(SFILES) ========]
|
||||||
cp -f ../micasa.def .
|
# cp -f ../micasa.def .
|
||||||
cp -f ../c_micasadk.vcproj .
|
# cp -f ../c_micasadk.vcproj .
|
||||||
"$(VSINSTALLDIR)/devenv" /rebuild $(TARGET_CFG) /project $(PROJECT_NAME) $(SFILES) /out build.log
|
"$(VSINSTALLDIR)/devenv" /rebuild $(TARGET_CFG) /project $(PROJECT_NAME) $(SFILES) /out build.log
|
||||||
cp -f ../$(TARGET_CFG)/$(MODULE_NAME).$(MODULE_EXT) $(CASALIBDIR)/$(TARGET_CFG)
|
cp -f ../$(TARGET_CFG)/$(MODULE_NAME).$(MODULE_EXT) $(CASALIBDIR)/$(TARGET_CFG)
|
||||||
|
|
||||||
@ -97,7 +97,8 @@ uninstall-local:
|
|||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
||||||
rm -f build.log
|
if [ -d ../$(TARGET_CFG) ]; then rm -rf ../$(TARGET_CFG); fi
|
||||||
|
if [ -f build.log ]; then rm -f build.log; fi
|
||||||
|
|
||||||
distclean-local:
|
distclean-local:
|
||||||
|
|
||||||
|
@ -1,7 +1,18 @@
|
|||||||
This is a command line utility that update the version and GUID of VS.NET project files. There is no licese on this tool.
|
This is a command line utility that updates the version and GUID of VS.NET project files.
|
||||||
|
|
||||||
|
The source for this tool has been downloaded from the following site.
|
||||||
|
|
||||||
The source is from
|
|
||||||
http://www.codeproject.com/dotnet/VersionVDProj.asp#xx1436860xx
|
http://www.codeproject.com/dotnet/VersionVDProj.asp#xx1436860xx
|
||||||
|
|
||||||
|
The copy right associated with this tool is as followings:
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////
|
||||||
|
// copyright 2003 Don Kackman - mailto:dkackman_2000@yahoo.com
|
||||||
|
//
|
||||||
|
// no warranty expressed or implied
|
||||||
|
// use however you'd like
|
||||||
|
////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
4/14/2006
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,9 +97,11 @@ uninstall-local:
|
|||||||
# cd $(DESTDIR)$(libdir); $(MONO)
|
# cd $(DESTDIR)$(libdir); $(MONO)
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
|
@echo [======== Cleaning Solution $(SFILES) ========]
|
||||||
|
"$(VSINSTALLDIR)/devenv" /clean $(TARGET_CFG) $(SFILES)
|
||||||
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
if [ -d $(TARGET_CFG) ]; then rm -rf $(TARGET_CFG); fi
|
||||||
if [ -d Debug ]; then rm -rf Debug; fi
|
if [ -d Debug ]; then rm -rf Debug; fi
|
||||||
rm -rf build.log
|
if [ -f build.log ]; then rm -f build.log; fi
|
||||||
|
|
||||||
distclean-local:
|
distclean-local:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user