-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.in
29 lines (26 loc) · 924 Bytes
/
Makefile.in
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
## This is the top-level directory for UniForM. Like all the other
# makefiles in uni its main purpose is to set the variables required by
# mk/suffix.mk (see that for more details).
#
# SUBDIRS is a list of all directories containing code to be compiled to
# form the UniForM workbench, in an order in which they can be compiled
# by recursively calling $(MAKE) -C (subdir) cabal.
ifeq "@BUILDAMOUNT@" "50"
# Just HTk
SUBDIRS = util events reactor posixutil htk
else
ifeq "@BUILDAMOUNT@" "70"
# Just HetCATs stuff
SUBDIRS = util events reactor posixutil htk graphs davinci
else
ifeq "@BUILDAMOUNT@" "100"
# All MMiSS stuff
SUBDIRS = util events reactor posixutil htk graphs \
davinci server simpledb imports types emacs mmiss/parser mmiss appl
else
echo !!!! Makefile bug: unexpected value @BUILDAMOUNT@ - please fix !!!!
endif
endif
endif
THISISTOP = YES
include @TOP@/mk/boilerplate.mk