diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-03-10 21:50:43 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:08:25 +0200 |
commit | da3f6b1d47080e0162944834d18017c9a691c0b1 (patch) | |
tree | 7a694aa59e70926112eca729716fbcaa655b6508 /aka.wiiremote/Makefile | |
parent | 71d377c64cf05eb5726e4ec803dc8288bf4c8357 (diff) |
moved wiiremote to aka.wiiremote to reflect the name of the Max/MSP object.
This is a direct port, so it makes sense to have the same name.
svn path=/trunk/externals/io/; revision=9551
Diffstat (limited to 'aka.wiiremote/Makefile')
-rw-r--r-- | aka.wiiremote/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/aka.wiiremote/Makefile b/aka.wiiremote/Makefile new file mode 100644 index 0000000..e222c9b --- /dev/null +++ b/aka.wiiremote/Makefile @@ -0,0 +1,33 @@ +TARGET := $(shell pwd | sed 's|.*/\(.*\)$$|\1|') +EXTERNALS_ROOT := $(shell pwd | sed 's|^\(/.*externals\).*|\1|') + +default: + make -C $(EXTERNALS_ROOT) $(TARGET) + +install: + make -C $(EXTERNALS_ROOT) $(TARGET)_install + +clean: + make -C $(EXTERNALS_ROOT) $(TARGET)_clean + +test_locations: + make -C $(EXTERNALS_ROOT) test_locations + +# for emacs +etags: + etags ../../../pd/src/*.h *.[ch] + make etags_`uname -s` + +etags_Darwin: + etags -a \ + /System/Library/Frameworks/ForceFeedback.framework/Headers/*.h \ + /System/Library/Frameworks/CoreFoundation.framework/Headers/*.h \ + /System/Library/Frameworks/Carbon.framework/Headers/*.h \ + /System/Library/Frameworks/IOBluetooth.framework/Headers/*.[ch] + +etags_Linux: + etags -a /usr/include/*.h linux/input.h /usr/include/sys/*.h + +etags_MINGW: + etags -a /usr/include/*.h /usr/include/sys/*.h \ + /usr/local/include/*.h /usr/local/include/sys/*.h |