You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
973 B
32 lines
973 B
# Copyright (c) 2015-present, Facebook, Inc.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
ROOT_DIR = ../..
|
|
include $(ROOT_DIR)/Makefile.config
|
|
|
|
CWD = $(shell pwd)
|
|
JSR_JAR = $(DEPENDENCIES_DIR)/java/jsr-305/jsr305.jar
|
|
SOURCES_DIR = src/main/java
|
|
ANNOT_SOURCES = $(shell find $(SOURCES_DIR)/com/facebook/infer/annotation -name "*.java")
|
|
ANNOT_CLASSES = 'annot_classes'
|
|
|
|
ANNOTATIONS_JAR = $(CWD)/annotations.jar
|
|
SOURCES_JAR = $(CWD)/annotations-src.jar
|
|
|
|
all: $(ANNOTATIONS_JAR) $(SOURCES_JAR)
|
|
|
|
$(ANNOTATIONS_JAR): $(ANNOT_SOURCES)
|
|
$(MKDIR_P) $(ANNOT_CLASSES)
|
|
$(JAVAC) -source 7 -target 7 -cp $(JSR_JAR) $(ANNOT_SOURCES) -d $(ANNOT_CLASSES)
|
|
cd $(ANNOT_CLASSES) && jar cvf $(ANNOTATIONS_JAR) com
|
|
|
|
$(SOURCES_JAR): $(ANNOT_SOURCES)
|
|
jar cvf $(SOURCES_JAR) $(SOURCES_DIR)/com
|
|
|
|
clean:
|
|
$(QUIET)$(REMOVE_DIR) $(ANNOT_CLASSES)
|
|
$(QUIET)$(REMOVE) $(ANNOTATIONS_JAR)
|
|
$(QUIET)$(REMOVE) $(SOURCES_JAR)
|