diff --git a/Makefile b/Makefile index 89ac015..03f08af 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,28 @@ RC := resources/rpv-web.rc RES := resources/rpv-web.res +ICON := resources/rpv-web.ico +ICON86 := resources/rpv-web-x86.ico +ICON64 := resources/rpv-web-x64.ico Options := -os windows -prod -enable-globals -cflags $(shell pwd)/${RES} DebugOptions := ${Options} -d debug rpv-web-x64 x64: ${RC} + cp ${ICON64} ${ICON} x86_64-w64-mingw32-windres ${RC} -O coff -o ${RES} v ${Options} . -o ${@}.exe rpv-web-x64-debug debug: ${RC} + cp ${ICON64} ${ICON} x86_64-w64-mingw32-windres ${RC} -O coff -o ${RES} v ${DebugOptions} . -o ${@}.exe rpv-web-x86 x86: ${RC} + cp ${ICON86} ${ICON} i686-w64-mingw32-windres ${RC} -O coff -o ${RES} v -m32 ${Options} . -o ${@}.exe rpv-web-x86-debug x86-debug: ${RC} + cp ${ICON86} ${ICON} i686-w64-mingw32-windres ${RC} -O coff -o ${RES} v -m32 ${DebugOptions} . -o ${@}.exe diff --git a/resources/rpv-web.ico b/resources/rpv-web-x64.ico similarity index 100% rename from resources/rpv-web.ico rename to resources/rpv-web-x64.ico diff --git a/resources/rpv-web-x86.ico b/resources/rpv-web-x86.ico new file mode 100644 index 0000000..f7d33b5 Binary files /dev/null and b/resources/rpv-web-x86.ico differ diff --git a/resources/rpv-web.png b/resources/rpv-web.png new file mode 100644 index 0000000..9ca3743 Binary files /dev/null and b/resources/rpv-web.png differ