mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[misc] updated acronym
* Resourceful -> Reliable * also removed standalone makefile (mkf)
This commit is contained in:
parent
1d429d939e
commit
7726071098
12 changed files with 17 additions and 70 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Drive access function calls
|
* Drive access function calls
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Formatting function calls
|
* Formatting function calls
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Formatting function calls
|
* Formatting function calls
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Licensing Data
|
* Licensing Data
|
||||||
* Copyright (c) 20111 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 20111 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
53
src/mkf
53
src/mkf
|
@ -1,53 +0,0 @@
|
||||||
# Rufus STANDALONE Makefile - invoke with "make -f mf"
|
|
||||||
# This file is part of the Rufus project.
|
|
||||||
#
|
|
||||||
# Copyright (c) 2011 Pete Batard <pbatard@akeo.ie>
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License as
|
|
||||||
# published by the Free Software Foundation, either version 3 of
|
|
||||||
# the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
|
|
||||||
OBJECTS = fat12.o fat16.o fat32.o br.o file.o drive.o msdos.o format.o stdio.o stdlg.o rufus.o
|
|
||||||
TARGET = rufus
|
|
||||||
|
|
||||||
CC = gcc
|
|
||||||
RC = windres
|
|
||||||
STRIP = strip
|
|
||||||
CFLAGS = -DWINVER=0x501 -D_WIN32_IE=0x501 -I./inc -std=gnu99 -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration -Wno-pointer-sign -Wshadow
|
|
||||||
LDFLAGS = -O2 -Wall -Wl,--subsystem,windows
|
|
||||||
LIBS = -lsetupapi -lole32 -lgdi32
|
|
||||||
|
|
||||||
.PHONY: all clean
|
|
||||||
|
|
||||||
all: $(TARGET)
|
|
||||||
|
|
||||||
$(TARGET): $(OBJECTS) $(TARGET)_rc.o
|
|
||||||
@echo "[CCLD] $@"
|
|
||||||
@$(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(TARGET)_rc.o $(LIBS)
|
|
||||||
|
|
||||||
%.o: %.c
|
|
||||||
@echo "[CC] $@"
|
|
||||||
@$(CC) -c -o $*.o $(CFLAGS) $<
|
|
||||||
|
|
||||||
%_rc.o: %.rc
|
|
||||||
@echo "[RC] $@"
|
|
||||||
@$(RC) -i $< -o $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.exe *.o
|
|
||||||
|
|
||||||
# This step produces the UPX compressed and signed release that is made available for public download
|
|
||||||
release: $(TARGET)
|
|
||||||
@$(STRIP) $(TARGET).exe
|
|
||||||
@upx $(TARGET).exe
|
|
||||||
@cmd.exe /k _sign.bat rufus.exe
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* MS-DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
|
* MS-DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* MS-DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
|
* MS-DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
|
14
src/rufus.rc
14
src/rufus.rc
|
@ -30,7 +30,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
||||||
IDD_DIALOG DIALOGEX 12, 12, 206, 263
|
IDD_DIALOG DIALOGEX 12, 12, 206, 263
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
EXSTYLE WS_EX_APPWINDOW
|
EXSTYLE WS_EX_APPWINDOW
|
||||||
CAPTION "Rufus v1.0.1.74"
|
CAPTION "Rufus v1.0.1.75"
|
||||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||||
BEGIN
|
BEGIN
|
||||||
DEFPUSHBUTTON "Start",IDC_START,94,223,50,14
|
DEFPUSHBUTTON "Start",IDC_START,94,223,50,14
|
||||||
|
@ -58,12 +58,12 @@ CAPTION "About Rufus"
|
||||||
FONT 8, "Microsoft Sans Serif", 400, 0, 0x0
|
FONT 8, "Microsoft Sans Serif", 400, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
ICON IDI_ICON,IDC_ABOUT_ICON,11,8,20,20
|
ICON IDI_ICON,IDC_ABOUT_ICON,11,8,20,20
|
||||||
LTEXT "Rufus - The Resourceful USB Formatting Utility *BETA*",IDC_RUFUS_BOLD,46,8,240,10,SS_NOPREFIX | SS_NOTIFY
|
LTEXT "Rufus - The Reliable USB Formatting Utility *BETA*",IDC_RUFUS_BOLD,46,8,240,10,SS_NOPREFIX | SS_NOTIFY
|
||||||
LTEXT "Copyright (c) 2011 Pete Batard",IDC_STATIC,46,36,139,8
|
LTEXT "Copyright (c) 2011 Pete Batard",IDC_STATIC,46,36,139,8
|
||||||
DEFPUSHBUTTON "OK",IDOK,231,175,50,14,WS_GROUP
|
DEFPUSHBUTTON "OK",IDOK,231,175,50,14,WS_GROUP
|
||||||
CONTROL "<a href=""https://github.com/pbatard/rufus/wiki/Rufus"">https://github.com/pbatard/rufus</a>",IDC_ABOUT_RUFUS_URL,
|
CONTROL "<a href=""https://github.com/pbatard/rufus/wiki/Rufus"">https://github.com/pbatard/rufus</a>",IDC_ABOUT_RUFUS_URL,
|
||||||
"SysLink",WS_TABSTOP,46,47,114,9
|
"SysLink",WS_TABSTOP,46,47,114,9
|
||||||
LTEXT "Version 1.0.1 (Build 74)",IDC_STATIC,46,19,78,8
|
LTEXT "Version 1.0.1 (Build 75)",IDC_STATIC,46,19,78,8
|
||||||
PUSHBUTTON "License...",IDC_ABOUT_LICENSE,46,175,50,14,WS_GROUP
|
PUSHBUTTON "License...",IDC_ABOUT_LICENSE,46,175,50,14,WS_GROUP
|
||||||
EDITTEXT IDC_ABOUT_COPYRIGHTS,46,107,235,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL
|
EDITTEXT IDC_ABOUT_COPYRIGHTS,46,107,235,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL
|
||||||
LTEXT "Report bugs or request enhancements at:",IDC_STATIC,46,66,187,8
|
LTEXT "Report bugs or request enhancements at:",IDC_STATIC,46,66,187,8
|
||||||
|
@ -162,8 +162,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,0,1,74
|
FILEVERSION 1,0,1,75
|
||||||
PRODUCTVERSION 1,0,1,74
|
PRODUCTVERSION 1,0,1,75
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -180,13 +180,13 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "akeo.ie"
|
VALUE "CompanyName", "akeo.ie"
|
||||||
VALUE "FileDescription", "Rufus"
|
VALUE "FileDescription", "Rufus"
|
||||||
VALUE "FileVersion", "1.0.1.74"
|
VALUE "FileVersion", "1.0.1.75"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "© 2011 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "© 2011 Pete Batard (GPL v3)"
|
||||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||||
VALUE "OriginalFilename", "rufus.exe"
|
VALUE "OriginalFilename", "rufus.exe"
|
||||||
VALUE "ProductName", "Rufus"
|
VALUE "ProductName", "Rufus"
|
||||||
VALUE "ProductVersion", "1.0.1.74"
|
VALUE "ProductVersion", "1.0.1.75"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Standard I/O Routines (logging, status, etc.)
|
* Standard I/O Routines (logging, status, etc.)
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Rufus: The Resourceful USB Formatting Utility
|
* Rufus: The Reliable USB Formatting Utility
|
||||||
* Standard Dialog Routines (Browse for folder, About, etc)
|
* Standard Dialog Routines (Browse for folder, About, etc)
|
||||||
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue