mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 14:28:12 +00:00
core: rename sgminer.c to miner.c.
Remember forking from cgminer? Changing cgminer->sgminer was a drag. Help future others have less of this.
This commit is contained in:
parent
7bc0be03d4
commit
474c783316
@ -31,9 +31,9 @@ GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 --dirty')
|
|||||||
sgminer_CPPFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
|
sgminer_CPPFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
sgminer_SOURCES := sgminer.c
|
sgminer_SOURCES := miner.c miner.h
|
||||||
sgminer_SOURCES += api.c
|
sgminer_SOURCES += api.c
|
||||||
sgminer_SOURCES += elist.h miner.h compat.h bench_block.h
|
sgminer_SOURCES += elist.h compat.h bench_block.h
|
||||||
sgminer_SOURCES += util.c util.h uthash.h
|
sgminer_SOURCES += util.c util.h uthash.h
|
||||||
sgminer_SOURCES += sha2.c sha2.h
|
sgminer_SOURCES += sha2.c sha2.h
|
||||||
sgminer_SOURCES += logging.c logging.h
|
sgminer_SOURCES += logging.c logging.h
|
||||||
|
@ -16,7 +16,7 @@ AC_INIT([sgminer], [v_ver], [veox@wemakethings.net], [sgminer], [https://github.
|
|||||||
AC_PREREQ(2.59)
|
AC_PREREQ(2.59)
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_SRCDIR([sgminer.c])
|
AC_CONFIG_SRCDIR([miner.c])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
@ -264,7 +264,7 @@ exit 0</Command>
|
|||||||
<ClCompile Include="..\ocl.c" />
|
<ClCompile Include="..\ocl.c" />
|
||||||
<ClCompile Include="..\pool.c" />
|
<ClCompile Include="..\pool.c" />
|
||||||
<ClCompile Include="..\scrypt.c" />
|
<ClCompile Include="..\scrypt.c" />
|
||||||
<ClCompile Include="..\sgminer.c" />
|
<ClCompile Include="..\miner.c" />
|
||||||
<ClCompile Include="..\sha2.c" />
|
<ClCompile Include="..\sha2.c" />
|
||||||
<ClCompile Include="..\util.c" />
|
<ClCompile Include="..\util.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -301,4 +301,4 @@ exit 0</Command>
|
|||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
<ClCompile Include="..\scrypt.c">
|
<ClCompile Include="..\scrypt.c">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\sgminer.c">
|
<ClCompile Include="..\miner.c">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\sha2.c">
|
<ClCompile Include="..\sha2.c">
|
||||||
|
Loading…
Reference in New Issue
Block a user