diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-09 21:32:52 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-09 21:32:52 +0000 |
commit | 9af9ff7391db7af5232a6e7d33a19eed1a08452e (patch) | |
tree | 101076f8016c764aecd784675203d0a33a89f340 /usbhid/Makefile | |
parent | bb144a13c634babcbba02c001479564aaf3b0dc8 (diff) |
updated makefile to the automatic version
svn path=/trunk/externals/hcs/; revision=5542
Diffstat (limited to 'usbhid/Makefile')
-rw-r--r-- | usbhid/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/usbhid/Makefile b/usbhid/Makefile new file mode 100644 index 0000000..576ff87 --- /dev/null +++ b/usbhid/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] ~/cvs/pure-data/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h |