regenerate all icon files
authorMichael Gilbert <mgilbert@debian.org>
Sat, 19 Mar 2022 00:48:02 +0000 (00:48 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Sat, 19 Mar 2022 00:48:02 +0000 (00:48 +0000)
Gbp-Pq: Topic generate
Gbp-Pq: Name icons.patch

dlls/comctl32/Makefile.in
dlls/comdlg32/Makefile.in
dlls/display.drv16/Makefile.in
programs/regedit/Makefile.in
programs/taskmgr/Makefile.in
tools/makedep.c

index 4ea068ea73156b00a3c7ae9261e71e68d01fc1c7..dd88c1c22c7d7afed852c159cc8e2e483073ff99 100644 (file)
@@ -58,4 +58,8 @@ SVG_SRCS = \
        idc_copy.svg \
        idc_divider.svg \
        idc_divideropen.svg \
-       idc_movebutton.svg
+       idc_movebutton.svg \
+       idi_dragarrow.svg \
+       idi_tt_info_sm.svg \
+       idi_tt_warn_sm.svg \
+       idi_tt_error_sm.svg
index 20242b6a1629d7d22b4f2e5cbf70641a77a89e8b..a1a0d5148cb7ca8f8eb566e30034021198365321 100644 (file)
@@ -22,6 +22,12 @@ SVG_SRCS = \
        pd32_collate.svg \
        pd32_landscape.svg \
        pd32_nocollate.svg \
-       pd32_portrait.svg
+       pd32_portrait.svg \
+       cdrom.svg \
+       hdisk.svg \
+       floppy.svg \
+       folder.svg \
+       folder2.svg \
+       network.svg
 
 IDL_SRCS = comdlg32_classes.idl
index 533ff36c0cc746bc86b429e5e71c3fedcbc14169..3cbc99a64b33a7596ba8613dbc2103fb005d61fa 100644 (file)
@@ -6,3 +6,5 @@ EXTRADLLFLAGS = -m16
 C_SRCS = display.c
 
 RC_SRCS = display.rc
+
+SVG_SRCS = oic_hand.svg
index 5b9df84b1d09757dd14f946cd0c61aca5af8e1ff..41842bbc966f44269d4a6113527d8640ac4c185f 100644 (file)
@@ -20,4 +20,4 @@ RC_SRCS = regedit.rc
 
 MANPAGES = regedit.man.in
 
-SVG_SRCS = regedit.svg
+SVG_SRCS = regedit.svg folderopen.svg folder.svg computer.svg string.svg bin.svg
index c385e9b5ab6f626e031fe891765a4ab7faf2a481..5b79de0f6ced001e5d9fac680f379571717cb5bb 100644 (file)
@@ -26,4 +26,6 @@ C_SRCS = \
 RC_SRCS = taskmgr.rc
 
 SVG_SRCS = \
-       taskmgr.svg
+       taskmgr.svg \
+       window.svg \
+       windowsm.svg
index 0ec8600a5ac3450ab6de220f27ff8dd311ceaa3c..eb2dc9dce0c8be2ce1e940be66e1016c1f756579 100644 (file)
@@ -1577,6 +1577,9 @@ static struct file *open_include_file( const struct makefile *make, struct incl_
 
     if (pFile->type == INCL_SYSTEM) return NULL;  /* ignore system files we cannot find */
 
+    /* no reason to check that files exist here, may be built later */
+    return file;
+
     /* try in src file directory */
     if ((file = open_file_same_dir( pFile->included_by, pFile->name, &pFile->filename ))) return file;
 
@@ -2975,6 +2978,17 @@ static void output_source_svg( struct makefile *make, struct incl_file *source,
 
         if (images[i])
         {
+            struct incl_file *src;
+            LIST_FOR_EACH_ENTRY( src, &make->sources, struct incl_file, entry )
+            {
+                if (strendswith( src->name, ".rc" ))
+                {
+                    char *res = replace_extension( src->name, "rc", "res" );
+                    char *res_file = src_dir_path( make, res );
+                    char *obj_file = src_dir_path( make, obj );
+                    output( "%s: %s.%s\n", res_file, obj_file, images[i] );
+                }
+            }
             output( "%s.%s: %s\n", src_dir_path( make, obj ), images[i], source->filename );
             output( "\t%sCONVERT=\"%s\" ICOTOOL=\"%s\" RSVG=\"%s\" %s %s $@\n",
                     cmd_prefix( "GEN" ), convert, icotool, rsvg,