repo.or.cz
/
trylon.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dragging in some modules when X86Compiler is used, so scripts can use them.
[trylon.git]
/
tests
/
posix
/
makefile
blob
2458edc5c8725ffd577057fea9cfd50794470a4e
1
# Makefile for a Trylon program.
2
3
PROGRAM
:=
posix-test
4
5
6
SOURCES
:= $(
wildcard
main
) $(
wildcard
sources
/*) $(
wildcard
build-settings
) $(
wildcard
build-settings.local
)
7
8
9
all
:
runnit
10
11
12
$(
PROGRAM
): $(
SOURCES
)
13
@trylon
14
@echo
"---------------------------------------------"
15
@echo
16
17
18
.PHONY
:
runnit
19
runnit
: $(
PROGRAM
)
20
@.
/$(
PROGRAM
)
21