root/Makefile.in

Revision 41bc9327382730ef8444d23830a3550ed77d9733, 0.8 KB (checked in by Manu Sporny <msporny@…>, 3 years ago)

Renamed firefox directory to fuzz-addon. Getting ready to add
Fuzz-based Firefox extension example.

  • Property mode set to 100644
Line 
1# The top-level Makefile that is used to build
2
3# State the platforms for which we are building
4VERSION = @VERSION@
5
6SUBDIRS := fuzz-addon
7
8ifdef PRINT_DIRECTORIES
9MAKE_CMD = $(MAKE)
10MAKE_DIR = $(MAKE_CMD) -C $(dir)
11else
12MAKE_CMD = $(MAKE) --no-print-directory -s
13MAKE_DIR = $(MAKE_CMD) -C $(dir)
14endif
15
16LIBS_DIR = @FUZZDIR@/libs
17
18.PHONY: all verbose clean test
19
20all:
21   @$(foreach dir,$(SUBDIRS),$(MAKE_DIR) build-executables &&) true
22
23clean:
24   @$(foreach dir,$(SUBDIRS),MAKE_CLEAN_ACTIVE=true $(MAKE_DIR) clean &&) true
25   @rm -rf libs/*
26   @rm -rf dist
27   @echo "Removed all objects and libraries."
28
29tests: all
30   @echo "No tests yet..."
31
32packages: all
33   @echo "Package building not implemented yet..."
34
35install:
36   @echo "Install not implemented yet..."
37
38verbose:
39   PRINT_DIRECTORIES=true $(MAKE) all
Note: See TracBrowser for help on using the browser.