Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ├── Makefile
  2. └── src
  3. ├── folder1
  4. │   ├── somefiles.c
  5. │   └── somefiles.h
  6. ├── folder2
  7. │   ├── problematic.h
  8. │   ├── somefiles.c
  9. │   ├── somefiles.h
  10. │   └── subdir
  11. │   └── included_file.h
  12. └── folder3
  13. ├── somefiles.c
  14. └── somefiles.h
  15.  
  16. LIBRARY_INC_PATHS = $(addprefix -I, $(shell find . -name '*.h' -printf '"%h"n' | sort -u))
  17.  
  18. #include "subdir/included_file.h"
  19.  
  20. #include "included_file.h"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement