summaryrefslogtreecommitdiff
path: root/source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-06-06 00:11:18 +0800
committerchai <chaifix@163.com>2019-06-06 00:11:18 +0800
commit88b882ed0b432c6aff2063213e2f793a36dd25f7 (patch)
tree5fe5d5334050e1a1146aa63e61e88aa2f5170727 /source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac
parentf6c0498c9728a286c13980ed3b60763d02e1b3a0 (diff)
*misc
Diffstat (limited to 'source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac')
-rw-r--r--source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac46
1 files changed, 0 insertions, 46 deletions
diff --git a/source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac b/source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac
deleted file mode 100644
index cda7d49..0000000
--- a/source/3rd-party/SDL2/src/hidapi/testgui/Makefile.mac
+++ /dev/null
@@ -1,46 +0,0 @@
-###########################################
-# Simple Makefile for HIDAPI test program
-#
-# Alan Ott
-# Signal 11 Software
-# 2010-07-03
-###########################################
-
-all: hidapi-testgui
-
-CC=gcc
-CXX=g++
-COBJS=../mac/hid.o
-CPPOBJS=test.o
-OBJCOBJS=mac_support_cocoa.o
-OBJS=$(COBJS) $(CPPOBJS) $(OBJCOBJS)
-CFLAGS=-I../hidapi -Wall -g -c `fox-config --cflags`
-LDFLAGS=-L/usr/X11R6/lib
-LIBS=`fox-config --libs` -framework IOKit -framework CoreFoundation -framework Cocoa
-
-
-hidapi-testgui: $(OBJS) TestGUI.app
- g++ -Wall -g $(OBJS) $(LIBS) $(LDFLAGS) -o hidapi-testgui
- ./copy_to_bundle.sh
- #cp TestGUI.app/Contents/MacOS/hidapi-testgui TestGUI.app/Contents/MacOS/tg
- #cp start.sh TestGUI.app/Contents/MacOS/hidapi-testgui
-
-$(COBJS): %.o: %.c
- $(CC) $(CFLAGS) $< -o $@
-
-$(CPPOBJS): %.o: %.cpp
- $(CXX) $(CFLAGS) $< -o $@
-
-$(OBJCOBJS): %.o: %.m
- $(CXX) $(CFLAGS) -x objective-c++ $< -o $@
-
-TestGUI.app: TestGUI.app.in
- rm -Rf TestGUI.app
- mkdir -p TestGUI.app
- cp -R TestGUI.app.in/ TestGUI.app
-
-clean:
- rm -f $(OBJS) hidapi-testgui
- rm -Rf TestGUI.app
-
-.PHONY: clean