diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-06-28 21:32:30 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:08:26 +0200 |
commit | 8d8c3b56bd45eb78a3d70b61d00d0e14290e6178 (patch) | |
tree | f6f10df1d8aacfd431ccf0fe837d767d743e591a /sixaxis/Makefile | |
parent | c095709343b24661506a5a850bac5cf142748a01 (diff) |
- the sixaxis external now builds with Pd-extended, and outputs the raw
accelerometer data
- for the rest of the data, use [hid] or [hidio] they happily coexist
svn path=/trunk/externals/io/; revision=10116
Diffstat (limited to 'sixaxis/Makefile')
-rw-r--r-- | sixaxis/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sixaxis/Makefile b/sixaxis/Makefile new file mode 100644 index 0000000..2b8688b --- /dev/null +++ b/sixaxis/Makefile @@ -0,0 +1,17 @@ +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 + +etags: + etags *.[ch] ~/code/pure-data/trunk/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h |