-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.config
44 lines (37 loc) · 1002 Bytes
/
Makefile.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Library title
TITLE := hotdrink
# Directory which holds original sources
SRCDIR := lib
# Directory to hold macro-expanded files
OBJDIR := objects
# Directory with test files
TESTDIR := tests
# Macro definitions
MACRODEFS := support/macros.m4
# Special JS file with namespace definitions
NSDEFS := ns.js
# sources are listed in are the order in which they will be concatenated
SOURCES := \
utility/helpers.js \
utility/observer.js \
utility/rx.js \
utility/graph.js \
model/constraint.js \
model/variable.js \
model/model.js \
model/command.js \
model/builder.js \
runtime/binding.js \
runtime/solver.js \
runtime/pool.js \
runtime/promise.js \
runtime/stream.js \
runtime/system.js \
binders/edit.js \
binders/text.js \
binders/command.js \
binders/css.js \
api.js
# Support files are copied into the test directory
SUPPORT := \
support/worker.js