diff options
Diffstat (limited to 'Source/3rdParty/SDL2/src/hidapi/windows/Makefile.mingw')
-rw-r--r-- | Source/3rdParty/SDL2/src/hidapi/windows/Makefile.mingw | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/Source/3rdParty/SDL2/src/hidapi/windows/Makefile.mingw b/Source/3rdParty/SDL2/src/hidapi/windows/Makefile.mingw deleted file mode 100644 index b800004..0000000 --- a/Source/3rdParty/SDL2/src/hidapi/windows/Makefile.mingw +++ /dev/null @@ -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 |