Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
2e986c51
Commit
2e986c51
authored
May 23, 2016
by
Mark Haines
Browse files
Don't use $^ cause that includes the header files
parent
83ce8270
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
2e986c51
...
...
@@ -134,10 +134,10 @@ $(BUILD_DIR)/javascript/%.js.bc: src/%.cpp | makedirs
$(EMCC.cc)
$(OUTPUT_OPTION)
$<
$(BUILD_DIR)/tests/%
:
tests/%.c $(DEBUG_OBJECTS)
$(LINK.c)
$
^
$(LOADLIBES)
$(LDLIBS)
-o
$@
$(LINK.c)
$
<
$(DEBUG_OBJECTS)
$(LOADLIBES)
$(LDLIBS)
-o
$@
$(BUILD_DIR)/tests/%
:
tests/%.cpp $(DEBUG_OBJECTS)
$(LINK.cc)
$
^
$(LOADLIBES)
$(LDLIBS)
-o
$@
$(LINK.cc)
$
<
$(DEBUG_OBJECTS)
$(LOADLIBES)
$(LDLIBS)
-o
$@
### dependencies
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment