From: borutr Date: Mon, 31 Jan 2005 16:50:31 +0000 (+0000) Subject: * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51, X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=5edf4905b7e98690528bca40252daeea257350b0;p=fw%2Fsdcc * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51, include/mcs51 and include/z80 directories to the package git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3665 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index b8cfb4ea..05a88417 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-01-31 Borut Razem + + * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51, + include/mcs51 and include/z80 directories to the package + 2004-01-26 Erik Petrich * src/hc08/gen.c (genFunction): fixed bug #1112752 diff --git a/support/scripts/sdcc.nsi b/support/scripts/sdcc.nsi index 995fd242..3c297df0 100644 --- a/support/scripts/sdcc.nsi +++ b/support/scripts/sdcc.nsi @@ -154,14 +154,22 @@ Section "SDCC include files" SectionIn 1 2 SetOutPath "$INSTDIR\include\asm\default" File "${DEV_ROOT}\include\asm\default\features.h" + SetOutPath "$INSTDIR\include\asm\ds390" + File "${DEV_ROOT}\include\asm\ds390\features.h" SetOutPath "$INSTDIR\include\asm\gbz80" File "${DEV_ROOT}\include\asm\gbz80\features.h" + SetOutPath "$INSTDIR\include\asm\mcs51" + File "${DEV_ROOT}\include\asm\mcs51\features.h" SetOutPath "$INSTDIR\include\asm\pic16" File "${DEV_ROOT}\include\asm\pic16\features.h" SetOutPath "$INSTDIR\include\asm\z80" File "${DEV_ROOT}\include\asm\z80\features.h" + SetOutPath "$INSTDIR\include\mcs51" + File "${DEV_ROOT}\include\mcs51\*.h" SetOutPath "$INSTDIR\include\pic16" File "${DEV_ROOT}\include\pic16\*.h" + SetOutPath "$INSTDIR\include\z80" + File "${DEV_ROOT}\include\z80\*.h" SetOutPath "$INSTDIR\include" File "${DEV_ROOT}\include\*.h" SectionEnd @@ -380,9 +388,13 @@ Section Uninstall Delete "$INSTDIR\include\asm\z80\*.h" Delete "$INSTDIR\include\asm\pic16\*.h" + Delete "$INSTDIR\include\asm\mcs51\*.h" Delete "$INSTDIR\include\asm\gbz80\*.h" + Delete "$INSTDIR\include\asm\ds390\*.h" Delete "$INSTDIR\include\asm\default\*.h" + Delete "$INSTDIR\include\z80\*.h" Delete "$INSTDIR\include\pic16\*.h" + Delete "$INSTDIR\include\mcs51\*.h" Delete "$INSTDIR\include\*.h" Delete "$INSTDIR\doc\README.TXT" @@ -414,10 +426,14 @@ Section Uninstall RMDir "$INSTDIR\include\asm\z80" RMDir "$INSTDIR\include\asm\pic16" + RMDir "$INSTDIR\include\asm\mcs51" RMDir "$INSTDIR\include\asm\gbz80" + RMDir "$INSTDIR\include\asm\ds390" RMDir "$INSTDIR\include\asm\default" RMDir "$INSTDIR\include\asm" + RMDir "$INSTDIR\include\z80" RMDir "$INSTDIR\include\pic16" + RMDir "$INSTDIR\include\mcs51" RMDir "$INSTDIR\include" RMDir "$INSTDIR\doc"