blob: 99af2f9c49ae8470786fbf0af945b5302bfd4dd0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | # file      : makefile
# author    : Boris Kolpackov <boris@kolpackov.net>
# copyright : Copyright (c) 2005-2010 Boris Kolpackov
# license   : GNU GPL v2; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make
default   := $(out_base)/
clean     := $(out_base)/.clean
$(default): $(out_base)/frontend-elements/ $(out_base)/examples/
$(clean): $(out_base)/frontend-elements/.clean $(out_base)/examples/.clean
$(call import,$(src_base)/frontend-elements/makefile)
$(call import,$(src_base)/examples/makefile)
 |