1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PREFIX=.
FILES=$(shell ls *.scm)
HELPERS=$(addprefix $(PREFIX)/bin/,mt_laststep mt_runstep)
megatest: $(FILES)
csc megatest.scm
dashboard: $(FILES)
csc dashboard.scm
$(PREFIX)/bin/megatest : megatest
@echo Installing to PREFIX=$(PREFIX), use ^C to cancel and change
sleep 2
cp megatest $(PREFIX)/bin/megatest
$(HELPERS) : utils/mt_*
|
>
>
>
>
|
>
>
>
>
>
>
>
|
|
|
|
>
>
>
>
>
>
>
>
>
|
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
|
PREFIX=.
SRCFILES = common.scm items.scm launch.scm \
ods.scm runconfig.scm server.scm configf.scm \
db.scm keys.scm margs.scm megatest-version.scm \
process.scm runs.scm
GUISRCF = dashboard.scm dboard.scm dashboard-tests.scm
OFILES = $(SRCFILES:%.scm=%.o)
GOFILES = $(GUISRCF:%.scm=%.o)
HELPERS=$(addprefix $(PREFIX)/bin/,mt_laststep mt_runstep)
all : megatest dashboard
megatest: $(OFILES) megatest.o
csc $(OFILES) megatest.o -o megatest
dashboard: $(OFILES) $(GOFILES)
csc $(OFILES) $(GOFILES) -o dashboard
db.o launch.o runs.o : db_records.scm
keys.o db.o runs.o launch.o : key_records.scm
$(OFILES) $(GOFILES) : common_records.scm
%.o : %.scm
csc -c $<
$(PREFIX)/bin/megatest : megatest
@echo Installing to PREFIX=$(PREFIX), use ^C to cancel and change
sleep 2
cp megatest $(PREFIX)/bin/megatest
$(HELPERS) : utils/mt_*
|