* support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 9 Apr 2005 09:50:09 +0000 (09:50 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 9 Apr 2005 09:50:09 +0000 (09:50 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3729 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/scripts/sdcc.nsi

index 98a87c54f9f69e874f3a19d006dc2ca62381fd32..1eb10745d8ded513636cdd253ad2ff841ce85f53 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-09 Borut Razem <borut.razem AT siol.net>
+
+       * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
+
 2005-04-08 Raphael Neider <rneider AT web.de>
 
        * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
index 3c297df08a11456b514142414e6ea20628906625..a3183cc44de5a0c1a72bbb98e35e75b90d70b5cc 100644 (file)
@@ -164,6 +164,8 @@ Section "SDCC include files"
   File "${DEV_ROOT}\include\asm\pic16\features.h"
   SetOutPath "$INSTDIR\include\asm\z80"
   File "${DEV_ROOT}\include\asm\z80\features.h"
+  SetOutPath "$INSTDIR\include\hc08"
+  File "${DEV_ROOT}\include\hc08\*.h"
   SetOutPath "$INSTDIR\include\mcs51"
   File "${DEV_ROOT}\include\mcs51\*.h"
   SetOutPath "$INSTDIR\include\pic16"
@@ -395,6 +397,7 @@ Section Uninstall
   Delete "$INSTDIR\include\z80\*.h"
   Delete "$INSTDIR\include\pic16\*.h"
   Delete "$INSTDIR\include\mcs51\*.h"
+  Delete "$INSTDIR\include\hc08\*.h"
   Delete "$INSTDIR\include\*.h"
 
   Delete "$INSTDIR\doc\README.TXT"
@@ -434,6 +437,7 @@ Section Uninstall
   RMDir "$INSTDIR\include\z80"
   RMDir "$INSTDIR\include\pic16"
   RMDir "$INSTDIR\include\mcs51"
+  RMDir "$INSTDIR\include\hc08"
   RMDir "$INSTDIR\include"
 
   RMDir "$INSTDIR\doc"