diff options
author | notspiff <cptspiff@gmail.com> | 2016-12-13 16:01:54 +0100 |
---|---|---|
committer | Arne Morten Kvarving <cptspiff@gmail.com> | 2016-12-15 00:19:18 +0100 |
commit | 65fc516ffa90fbe24fa763f87fff159139d392ce (patch) | |
tree | 800440e99ac319e616fa2a3db9c590fa0eda4586 /tools/EventClients | |
parent | dda16e340bbb6126eae47c777e03c7ec04dd55c2 (diff) |
remove autotools buildsystem
Diffstat (limited to 'tools/EventClients')
-rw-r--r-- | tools/EventClients/Clients/OSXRemote/Makefile.in | 18 | ||||
-rw-r--r-- | tools/EventClients/Makefile.in | 28 |
2 files changed, 0 insertions, 46 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/Makefile.in b/tools/EventClients/Clients/OSXRemote/Makefile.in deleted file mode 100644 index 1d08fb596d..0000000000 --- a/tools/EventClients/Clients/OSXRemote/Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ -#convenience makefile to allow headless osx build - -DEBUG_FLAGS=@DEBUG_FLAGS@ - -#check for debug build -ifneq (,$(findstring _DEBUG, $(DEBUG_FLAGS))) - CONFIGURATION=Debug -else - CONFIGURATION=Release -endif - -all: - xcodebuild -configuration $(CONFIGURATION) - -clean: - xcodebuild clean -configuration $(CONFIGURATION) - -.PHONY: all clean diff --git a/tools/EventClients/Makefile.in b/tools/EventClients/Makefile.in deleted file mode 100644 index 2cd5712bfa..0000000000 --- a/tools/EventClients/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -WII_EXTRA_OPTS= -CLEAN_FILES=Clients/WiiRemote/WiiRemote -PYTHON_SITEDIR := $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()") - -all: install - -wiimote: Clients/WiiRemote/WiiRemote - -Clients/WiiRemote/WiiRemote: - cd Clients/WiiRemote && \ - $(CXX) $(CXXFLAGS) $(LDFLAGS) CWIID_WiiRemote.cpp -lcwiid -lbluetooth -DICON_PATH="\"$(datarootdir)/pixmaps/@APP_NAME_LC@/\"" $(WII_EXTRA_OPTS) -o WiiRemote - -install: Clients/WiiRemote/WiiRemote - mkdir -p $(DESTDIR)$(bindir) - cp -a Clients/WiiRemote/WiiRemote $(DESTDIR)$(bindir)/@APP_NAME_LC@-wiiremote - cp -a Clients/PS3\ BD\ Remote/ps3_remote.py $(DESTDIR)$(bindir)/@APP_NAME_LC@-ps3remote - cp -a Clients/PS3\ Sixaxis\ Controller/ps3d.py $(DESTDIR)$(bindir)/@APP_NAME_LC@-ps3d - cp -a Clients/Kodi\ Send/kodi-send.py $(DESTDIR)$(bindir)/@APP_NAME_LC@-send - mkdir -p $(DESTDIR)$(PYTHON_SITEDIR)/@APP_NAME_LC@ - echo 'ICON_PATH="$(datarootdir)/pixmaps/@APP_NAME_LC@/"' > $(DESTDIR)$(PYTHON_SITEDIR)/@APP_NAME_LC@/defs.py - cp -a lib/python/* $(DESTDIR)$(PYTHON_SITEDIR)/@APP_NAME_LC@/ - cp -a Clients/PS3\ BD\ Remote/ps3_remote.py $(DESTDIR)$(PYTHON_SITEDIR)/@APP_NAME_LC@/ - mkdir -p $(DESTDIR)$(includedir)/@APP_NAME_LC@ - cp -a lib/c++/* $(DESTDIR)$(includedir)/@APP_NAME_LC@/ - mkdir -p $(DESTDIR)$(datarootdir)/pixmaps/@APP_NAME_LC@ - cp -a icons/* $(DESTDIR)$(datarootdir)/pixmaps/@APP_NAME_LC@/ - -include ../../Makefile.include |