forked from facebook/infer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: public Create Makefile.config.in to hold paths to various source directories used in infer/annotations/Makefile. Reviewed By: jeremydubreil Differential Revision: D2702986 fb-gh-sync-id: b5eb5bf
- Loading branch information
Showing
5 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ _build | |
/autom4te.cache | ||
/config.status | ||
/configure | ||
/Makefile.config | ||
|
||
# IntelliJ files | ||
/scripts/.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright (c) 2015 - present Facebook, Inc. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD style license found in the | ||
# LICENSE file in the root directory of this source tree. An additional grant | ||
# of patent rights can be found in the PATENTS file in the same directory. | ||
|
||
ABSOLUTE_ROOT_DIR = $(shell cd $(ROOT_DIR) && pwd) | ||
|
||
INFER_DIR = $(ABSOLUTE_ROOT_DIR)/infer | ||
DEPENDENCIES_DIR = $(ABSOLUTE_ROOT_DIR)/dependencies | ||
|
||
LIB_DIR = $(INFER_DIR)/lib | ||
|
||
JAVA_LIB_DIR = $(LIB_DIR)/java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters