Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LabComm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Blomdell
LabComm
Commits
ddb23f18
Commit
ddb23f18
authored
9 years ago
by
Sven Gestegård Robertz
Browse files
Options
Downloads
Patches
Plain Diff
hacked Makefiles to make them work on macos X
parent
962a854e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+10
-0
10 additions, 0 deletions
Makefile
test/Makefile
+2
-2
2 additions, 2 deletions
test/Makefile
with
12 additions
and
2 deletions
Makefile
+
10
−
0
View file @
ddb23f18
...
...
@@ -2,19 +2,29 @@ SUBDIRS=compiler lib test examples packaging
export
LABCOMM_JAR
=
$(
shell
pwd
)
/compiler/labcomm2014_compiler.jar
export
LABCOMM
=
java
-jar
$(
LABCOMM_JAR
)
UNAME_S
=
$(
shell
uname
-s
)
.PHONY
:
all
all
:
$(SUBDIRS:%=all-%)
.PHONY
:
all-%
all-%
:
ifeq
($(UNAME_S),Darwin)
DYLD_LIBRARY_PATH
=
`
pwd
`
/lib/c
$(
MAKE
)
-C
$*
else
LD_LIBRARY_PATH
=
`
pwd
`
/lib/c
$(
MAKE
)
-C
$*
endif
.PHONY
:
test
test
:
$(SUBDIRS:%=test-%)
.PHONY
:
test-%
test-%
:
ifeq
($(UNAME_S),Darwin)
DYLD_LIBRARY_PATH
=
`
pwd
`
/lib/c
$(
MAKE
)
-C
$*
test
else
LD_LIBRARY_PATH
=
`
pwd
`
/lib/c
$(
MAKE
)
-C
$*
test
endif
.PHONY
:
clean
clean
:
$(SUBDIRS:%=clean-%)
...
...
This diff is collapsed.
Click to expand it.
test/Makefile
+
2
−
2
View file @
ddb23f18
TESTS
=
basic simple nested ref
LABCOMM_JAR
=
../compiler/labcomm2014_compiler.jar
LABCOMM
=
java
-jar
$(
LABCOMM_JAR
)
MONO_PATH
=
$(
shell
realpath
../lib/csharp
)
PYTHONPATH
=
$(
shell
realpath
../lib/python
)
MONO_PATH
=
$(
shell
pwd
)
/
../lib/csharp
PYTHONPATH
=
$(
shell
pwd
)
/
../lib/python
include
../lib/c/os_compat.mk
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment