Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # This file requires the clang build system, at least for now. So to use this | |
| 2 # Makefile, you should execute the following commands to copy this directory | |
| 3 # into a clang checkout: | |
|
Nico
2011/02/03 20:38:56
Ugh!
Can you add a "TODO(thakis): Improve situati
| |
| 4 # | |
| 5 # cp -R <this directory> /path/to/clang/examples/chromeplugin | |
| 6 # cd /path/to/clang/examples/chromeplugin | |
| 7 # make | |
| 8 # | |
| 9 # You can't just link the directories, or specify clang as a full path for some | |
| 10 # reason. :( | |
| 11 | |
| 12 CLANG_LEVEL := ../.. | |
| 13 LIBRARYNAME = FindBadConstructs | |
| 14 | |
| 15 LINK_LIBS_IN_SHARED = 1 | |
| 16 SHARED_LIBRARY = 1 | |
| 17 | |
| 18 include $(CLANG_LEVEL)/Makefile | |
| OLD | NEW |