diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-30 22:50:13 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-30 22:50:13 +0000 |
commit | 4831402603a1a78939216974c09dfa45e1d7c03d (patch) | |
tree | 038c24cc1a959dbb9818511c907c78453e524ec8 /usbhid/Makefile | |
parent | 66d52779d1ecb627a3fc7dc25101f53f45bd2652 (diff) |
got strtol working (baby steps), but I can't find the magic combo to get output working
svn path=/trunk/externals/hcs/; revision=8293
Diffstat (limited to 'usbhid/Makefile')
-rw-r--r-- | usbhid/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/usbhid/Makefile b/usbhid/Makefile index 4b68f67..01a6fee 100644 --- a/usbhid/Makefile +++ b/usbhid/Makefile @@ -13,6 +13,17 @@ clean: test_locations: make -C $(EXTERNALS_ROOT) test_locations +# for emacs etags: - etags *.[ch] ../../../pd/src/*.[ch] libhid-svn/*/*.? \ - /usr/include/*.h /usr/include/sys/*.h + etags --language=c *.[ch] ../../../pd/src/*.[ch] \ + /usr/include/*.h /usr/include/sys/*.h \ + /sw/include/*.h /sw/include/*/*.h \ + libhid-svn/*/*.? + +#etags_Darwin: +# etags --append /sw/include/*.h /sw/include/*/*.h + +etags_Linux: + etags --append libhid-svn/*/*.? + + |