2013-05-10 14:41:02 +00:00
|
|
|
# Copyright 2013 Prometheus Team
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-06-06 09:55:53 +00:00
|
|
|
all: dumper rule_checker
|
2013-05-10 14:41:02 +00:00
|
|
|
|
|
|
|
SUFFIXES:
|
|
|
|
|
|
|
|
include ../Makefile.INCLUDE
|
|
|
|
|
2013-05-21 21:23:02 +00:00
|
|
|
dumper:
|
|
|
|
$(MAKE) -C dumper
|
|
|
|
|
2013-08-06 15:55:40 +00:00
|
|
|
rule_checker:
|
|
|
|
$(MAKE) -C rule_checker
|
|
|
|
|
2013-05-10 14:41:02 +00:00
|
|
|
clean:
|
2013-06-11 15:45:26 +00:00
|
|
|
$(MAKE) -C dumper clean
|
2013-08-06 15:55:40 +00:00
|
|
|
$(MAKE) -C rule_checker clean
|
2013-05-10 14:41:02 +00:00
|
|
|
|
2014-06-06 09:55:53 +00:00
|
|
|
.PHONY: clean dumper rule_checker
|