support/scripts/sdcc.nsi: added include/pic16 to setup
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 1 Jul 2004 18:08:07 +0000 (18:08 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 1 Jul 2004 18:08:07 +0000 (18:08 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3372 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/scripts/sdcc.nsi

index 37aba6a103405d992657f96240006028e1ea1389..88f225365889ca4205e81eb171b27f6f4cb24af1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-01 Borut Razem <borut.razem AT siol.net>
+
+       * support/scripts/sdcc.nsi: added include/pic16 to setup
+
 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
 
        * device/lib/Makefile.in: fixed bug in target objects-pic16,
index bc62e3eb1f3f7e4390894522bfca8ce6a6c30d12..31a3380a37a5579f4462ce3f4c77f5098381eabf 100644 (file)
@@ -166,6 +166,8 @@ Section "SDCC include files"
   File "${DEV_ROOT}\include\asm\gbz80\features.h"
   SetOutPath "$INSTDIR\include\asm\z80"
   File "${DEV_ROOT}\include\asm\z80\features.h"
+  SetOutPath "$INSTDIR\include\pic16"
+  File "${DEV_ROOT}\include\pic16\*.h"
   SetOutPath "$INSTDIR\include"
   File "${DEV_ROOT}\include\*.h"
 SectionEnd
@@ -385,6 +387,7 @@ Section Uninstall
   Delete "$INSTDIR\include\asm\z80\*.h"
   Delete "$INSTDIR\include\asm\gbz80\*.h"
   Delete "$INSTDIR\include\asm\default\*.h"
+  Delete "$INSTDIR\include\pic16\*.h"
   Delete "$INSTDIR\include\*.h"
 
   Delete "$INSTDIR\doc\README.TXT"
@@ -418,6 +421,7 @@ Section Uninstall
   RMDir "$INSTDIR\include\asm\gbz80"
   RMDir "$INSTDIR\include\asm\default"
   RMDir "$INSTDIR\include\asm"
+  RMDir "$INSTDIR\include\pic16"
   RMDir "$INSTDIR\include"
 
   RMDir "$INSTDIR\doc"