mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Remove HIDAPI Autotools build system and unused files
This commit is contained in:
15
Externals/hidapi/windows/.gitignore
vendored
15
Externals/hidapi/windows/.gitignore
vendored
@ -1,15 +0,0 @@
|
||||
Debug
|
||||
Release
|
||||
*.exp
|
||||
*.ilk
|
||||
*.lib
|
||||
*.suo
|
||||
*.vcproj.*
|
||||
*.ncb
|
||||
*.suo
|
||||
*.dll
|
||||
*.pdb
|
||||
.deps
|
||||
.libs
|
||||
*.lo
|
||||
*.la
|
14
Externals/hidapi/windows/Makefile-manual
vendored
14
Externals/hidapi/windows/Makefile-manual
vendored
@ -1,14 +0,0 @@
|
||||
|
||||
|
||||
OS=$(shell uname)
|
||||
|
||||
ifneq (,$(findstring MINGW,$(OS)))
|
||||
FILE=Makefile.mingw
|
||||
endif
|
||||
|
||||
ifeq ($(FILE), )
|
||||
all:
|
||||
$(error Your platform ${OS} is not supported at this time.)
|
||||
endif
|
||||
|
||||
include $(FILE)
|
16
Externals/hidapi/windows/Makefile.am
vendored
16
Externals/hidapi/windows/Makefile.am
vendored
@ -1,16 +0,0 @@
|
||||
lib_LTLIBRARIES = libhidapi.la
|
||||
libhidapi_la_SOURCES = hid.c
|
||||
libhidapi_la_LDFLAGS = $(LTLDFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/hidapi/
|
||||
libhidapi_la_LIBADD = $(LIBS)
|
||||
|
||||
hdrdir = $(includedir)/hidapi
|
||||
hdr_HEADERS = $(top_srcdir)/hidapi/hidapi.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
ddk_build \
|
||||
hidapi.vcproj \
|
||||
hidtest.vcproj \
|
||||
Makefile-manual \
|
||||
Makefile.mingw \
|
||||
hidapi.sln
|
35
Externals/hidapi/windows/Makefile.mingw
vendored
35
Externals/hidapi/windows/Makefile.mingw
vendored
@ -1,35 +0,0 @@
|
||||
###########################################
|
||||
# Simple Makefile for HIDAPI test program
|
||||
#
|
||||
# Alan Ott
|
||||
# Signal 11 Software
|
||||
# 2010-06-01
|
||||
###########################################
|
||||
|
||||
all: hidtest libhidapi.dll
|
||||
|
||||
CC=gcc
|
||||
CXX=g++
|
||||
COBJS=hid.o
|
||||
CPPOBJS=../hidtest/hidtest.o
|
||||
OBJS=$(COBJS) $(CPPOBJS)
|
||||
CFLAGS=-I../hidapi -g -c
|
||||
LIBS= -lsetupapi
|
||||
DLL_LDFLAGS = -mwindows -lsetupapi
|
||||
|
||||
hidtest: $(OBJS)
|
||||
g++ -g $^ $(LIBS) -o hidtest
|
||||
|
||||
libhidapi.dll: $(OBJS)
|
||||
$(CC) -g $^ $(DLL_LDFLAGS) -o libhidapi.dll
|
||||
|
||||
$(COBJS): %.o: %.c
|
||||
$(CC) $(CFLAGS) $< -o $@
|
||||
|
||||
$(CPPOBJS): %.o: %.cpp
|
||||
$(CXX) $(CFLAGS) $< -o $@
|
||||
|
||||
clean:
|
||||
rm *.o ../hidtest/*.o hidtest.exe
|
||||
|
||||
.PHONY: clean
|
@ -1,2 +0,0 @@
|
||||
*.log
|
||||
obj*_*_*
|
17
Externals/hidapi/windows/ddk_build/hidapi.def
vendored
17
Externals/hidapi/windows/ddk_build/hidapi.def
vendored
@ -1,17 +0,0 @@
|
||||
LIBRARY hidapi
|
||||
EXPORTS
|
||||
hid_open @1
|
||||
hid_write @2
|
||||
hid_read @3
|
||||
hid_close @4
|
||||
hid_get_product_string @5
|
||||
hid_get_manufacturer_string @6
|
||||
hid_get_serial_number_string @7
|
||||
hid_get_indexed_string @8
|
||||
hid_error @9
|
||||
hid_set_nonblocking @10
|
||||
hid_enumerate @11
|
||||
hid_open_path @12
|
||||
hid_send_feature_report @13
|
||||
hid_get_feature_report @14
|
||||
|
49
Externals/hidapi/windows/ddk_build/makefile
vendored
49
Externals/hidapi/windows/ddk_build/makefile
vendored
@ -1,49 +0,0 @@
|
||||
#############################################################################
|
||||
#
|
||||
# Copyright (C) Microsoft Corporation 1995, 1996
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# MAKEFILE for HID directory
|
||||
#
|
||||
#############################################################################
|
||||
|
||||
!IFDEF WIN95_BUILD
|
||||
|
||||
ROOT=..\..\..\..
|
||||
|
||||
VERSIONLIST = debug retail
|
||||
IS_32 = TRUE
|
||||
IS_SDK = TRUE
|
||||
IS_PRIVATE = TRUE
|
||||
IS_SDK = TRUE
|
||||
IS_DDK = TRUE
|
||||
WIN32 = TRUE
|
||||
COMMONMKFILE = hidapi.mk
|
||||
|
||||
!include $(ROOT)\dev\master.mk
|
||||
|
||||
|
||||
!ELSE
|
||||
|
||||
#
|
||||
# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
|
||||
# file to this component. This file merely indirects to the real make file
|
||||
# that is shared by all the driver components of the Windows NT DDK
|
||||
#
|
||||
|
||||
!IF DEFINED(_NT_TARGET_VERSION)
|
||||
! IF $(_NT_TARGET_VERSION)>=0x501
|
||||
! INCLUDE $(NTMAKEENV)\makefile.def
|
||||
! ELSE
|
||||
# Only warn once per directory
|
||||
! INCLUDE $(NTMAKEENV)\makefile.plt
|
||||
! IF "$(BUILD_PASS)"=="PASS1"
|
||||
! message BUILDMSG: Warning : The sample "$(MAKEDIR)" is not valid for the current OS target.
|
||||
! ENDIF
|
||||
! ENDIF
|
||||
!ELSE
|
||||
! INCLUDE $(NTMAKEENV)\makefile.def
|
||||
!ENDIF
|
||||
|
||||
!ENDIF
|
||||
|
23
Externals/hidapi/windows/ddk_build/sources
vendored
23
Externals/hidapi/windows/ddk_build/sources
vendored
@ -1,23 +0,0 @@
|
||||
TARGETNAME=hidapi
|
||||
TARGETTYPE=DYNLINK
|
||||
UMTYPE=console
|
||||
UMENTRY=main
|
||||
|
||||
MSC_WARNING_LEVEL=/W3 /WX
|
||||
|
||||
TARGETLIBS=$(SDK_LIB_PATH)\hid.lib \
|
||||
$(SDK_LIB_PATH)\setupapi.lib \
|
||||
$(SDK_LIB_PATH)\kernel32.lib \
|
||||
$(SDK_LIB_PATH)\comdlg32.lib
|
||||
|
||||
USE_MSVCRT=1
|
||||
|
||||
INCLUDES= ..\..\hidapi
|
||||
SOURCES= ..\hid.c \
|
||||
|
||||
|
||||
TARGET_DESTINATION=retail
|
||||
|
||||
MUI=0
|
||||
MUI_COMMENT="HID Interface DLL"
|
||||
|
Reference in New Issue
Block a user